Searched refs:strchr (Results 1 – 8 of 8) sorted by relevance
/lib/libc/minimal/source/string/ |
A D | strspn.c | 15 while ((*s != '\0') && (strchr(accept, *s) != NULL)) { in strspn() 27 while ((*s != '\0') && (strchr(reject, *s) == NULL)) { in strcspn()
|
A D | string.c | 69 char *strchr(const char *s, int c) in strchr() function 168 while (*start && strchr(sep, *start)) { in strtok_r() 179 while (*end && !strchr(sep, *end)) { in strtok_r()
|
/lib/posix/options/getopt/ |
A D | getopt.c | 108 if (strchr(ostr, '-') == NULL) { in getopt() 119 oli = strchr(ostr, state->optopt); in getopt()
|
A D | getopt_long.c | 204 has_equal = strchr(current_argv, '='); in parse_long_options() 416 (state->place[1] == '\0' && strchr(options, '-') == NULL)) { 495 } else if (*(state->place) != ':' && strchr(options, *(state->place)) != NULL) { 508 oli = strchr(options, optchar);
|
/lib/posix/options/ |
A D | fnmatch.c | 182 strchr(string, '/') == NULL in fnmatchx() 189 string = strchr(string, '/'); in fnmatchx()
|
A D | env_common.c | 49 if (name == NULL || namelen == 0 || strchr(name, '=') != NULL) { in findenv()
|
/lib/libc/minimal/include/ |
A D | string.h | 24 extern char *strchr(const char *s, int c);
|
/lib/posix/shell/ |
A D | env.c | 87 value = strchr(argv[1], '='); in cmd_env_set()
|
Completed in 15 milliseconds