Searched refs:strpbrk (Results 1 – 8 of 8) sorted by relevance
/string/ |
A D | strpbrk.c | 20 #undef strpbrk 23 #define STRPBRK strpbrk 33 libc_hidden_builtin_def (strpbrk)
|
A D | bug-strpbrk1.c | 20 strpbrk (b++, ""); in main()
|
A D | tst-inlcall.c | 65 if (strpbrk (hw, "o") - hw != 4) in do_test()
|
A D | string.h | 303 extern char *strpbrk (char *__s, const char *__accept) 305 extern const char *strpbrk (const char *__s, const char *__accept) 310 strpbrk (char *__s, const char *__accept) __THROW in strpbrk() function 316 strpbrk (const char *__s, const char *__accept) __THROW in strpbrk() function 323 extern char *strpbrk (const char *__s, const char *__accept)
|
A D | tester.c | 767 check(strpbrk("abcd", "z") == NULL, 1); /* Not found. */ in test_strpbrk() 769 check(strpbrk(one, "c") == one+2, 2); /* Basic test. */ in test_strpbrk() 770 check(strpbrk(one, "d") == one+3, 3); /* End of string. */ in test_strpbrk() 771 check(strpbrk(one, "a") == one, 4); /* Beginning. */ in test_strpbrk() 772 check(strpbrk(one, "") == NULL, 5); /* Empty search list. */ in test_strpbrk() 773 check(strpbrk(one, "cb") == one+1, 6); /* Multiple search. */ in test_strpbrk() 775 check(strpbrk(one, "b") == one+1, 7); /* Finding first. */ in test_strpbrk() 777 check(strpbrk(one, "db") == one+1, 9); /* Another variant. */ in test_strpbrk() 779 check(strpbrk(one, "bc") == NULL, 10); /* Empty string. */ in test_strpbrk() 781 check(strpbrk(one, "bcd") == NULL, 11); /* Empty string. */ in test_strpbrk() [all …]
|
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 | test-strpbrk.c | 48 # define STRPBRK strpbrk
|
Completed in 14 milliseconds