Searched refs:strchr (Results 1 – 16 of 16) sorted by relevance
/string/ |
A D | strchr.c | 26 #undef strchr 29 # define STRCHR strchr 183 weak_alias (strchr, index) 185 libc_hidden_builtin_def (strchr)
|
A D | strrchr.c | 37 return strchr (s, '\0'); in STRRCHR() 40 while ((p = strchr (s, c)) != NULL) in STRRCHR()
|
A D | argz-next.c | 28 entry = strchr (entry, '\0') + 1; in __argz_next()
|
A D | tst-inlcall.c | 58 if (strchr ("hello world", ch++) == NULL) in do_test()
|
A D | string.h | 226 extern char *strchr (char *__s, int __c) 228 extern const char *strchr (const char *__s, int __c) 233 strchr (char *__s, int __c) __THROW in strchr() function 239 strchr (const char *__s, int __c) __THROW in strchr() function 246 extern char *strchr (const char *__s, int __c)
|
A D | Versions | 38 stpcpy; stpncpy; strcasecmp; strcat; strchr; strcmp; strcoll; strcpy;
|
A D | Makefile | 32 routines := strcat strchr strcmp strcoll strcpy strcspn \ 52 memset memccpy stpcpy stpncpy strcat strchr strcmp strcpy \
|
A D | argz.h | 139 __entry = strchr (__entry, '\0') + 1; in __NTH()
|
A D | strstr.c | 84 hs = (const unsigned char *)strchr ((const char*)hs, ne[0]); in STRSTR()
|
A D | envz.c | 164 if (! strchr (entry, SEP)) in envz_strip()
|
A D | tester.c | 568 check (strchr ("abcd", 'z') == NULL, 1); /* Not found. */ in test_strchr() 570 check (strchr (one, 'c') == one+2, 2); /* Basic test. */ in test_strchr() 571 check (strchr (one, 'd') == one+3, 3); /* End of string. */ in test_strchr() 572 check (strchr (one, 'a') == one, 4); /* Beginning. */ in test_strchr() 573 check (strchr (one, '\0') == one+4, 5); /* Finding NUL. */ in test_strchr() 575 check (strchr (one, 'b') == one+1, 6); /* Finding first. */ in test_strchr() 577 check (strchr (one, 'b') == NULL, 7); /* Empty string. */ in test_strchr() 578 check (strchr (one, '\0') == one, 8); /* NUL in empty string. */ in test_strchr() 588 check (strchr (p, '/') == NULL, 9+i); in test_strchr()
|
A D | test-strspn.c | 34 # define STRCHR strchr
|
A D | test-strchr.c | 41 # define STRCHR strchr
|
A D | test-strpbrk.c | 23 # define STRCHR strchr
|
A D | string-inlines.c | 58 if (__retval != NULL && (*__s = strchr (__retval, __reject)) != NULL) in __old_strsep_1c()
|
A D | stratcliff.c | 38 # define STRCHR strchr
|
Completed in 25 milliseconds