Searched refs:strrchr (Results 1 – 8 of 8) sorted by relevance
/string/ |
A D | strrchr.c | 20 #undef strrchr 23 # define STRRCHR strrchr 51 weak_alias (strrchr, rindex) 53 libc_hidden_builtin_def (strrchr)
|
A D | basename.c | 24 char *p = strrchr (filename, '/'); in __basename()
|
A D | string.h | 253 extern char *strrchr (char *__s, int __c) 255 extern const char *strrchr (const char *__s, int __c) 260 strrchr (char *__s, int __c) __THROW in strrchr() function 266 strrchr (const char *__s, int __c) __THROW in strrchr() function 273 extern char *strrchr (const char *__s, int __c)
|
A D | Versions | 40 strncat; strncmp; strncpy; strndup; strnlen; strpbrk; strrchr; strsep;
|
A D | Makefile | 36 strrchr strpbrk strsignal strspn strstr strtok \ 53 strcspn strlen strncmp strncpy strpbrk strrchr strspn memmem \
|
A D | tester.c | 675 check (strrchr ("abcd", 'z') == NULL, 1); /* Not found. */ in test_strrchr() 677 check (strrchr (one, 'c') == one+2, 2); /* Basic test. */ in test_strrchr() 678 check (strrchr (one, 'd') == one+3, 3); /* End of string. */ in test_strrchr() 679 check (strrchr (one, 'a') == one, 4); /* Beginning. */ in test_strrchr() 680 check (strrchr (one, '\0') == one+4, 5); /* Finding NUL. */ in test_strrchr() 682 check (strrchr (one, 'b') == one+3, 6); /* Finding last. */ in test_strrchr() 684 check (strrchr (one, 'b') == NULL, 7); /* Empty string. */ in test_strrchr() 685 check (strrchr (one, '\0') == one, 8); /* NUL in empty string. */ in test_strrchr() 695 check (strrchr (p, '/') == NULL, 9+i); in test_strrchr()
|
A D | test-strrchr.c | 37 # define STRRCHR strrchr
|
A D | stratcliff.c | 39 # define STRRCHR strrchr
|
Completed in 17 milliseconds