![]() -> Click here to learn how to get live help <- |
STRPBRKIndexNAMEstrpbrk - search a string for any of a set of charactersSYNOPSIS#include <string.h> char *strpbrk(const char *s, const char *accept); DESCRIPTIONThe fBstrpbrk()fP function locates the first occurrence in the string fIsfP of any of the characters in the string fIacceptfP.RETURN VALUEThe fBstrpbrk()fP function returns a pointer to the character in fIsfP that matches one of the characters in fIacceptfP, or NULL if no such character is found.CONFORMING TOSVID 3, POSIX, BSD 4.3, ISO 9899SEE ALSOindex(3), memchr(3), rindex(3), strchr(3), strsep(3), strspn(3), strstr(3), strtok(3)
Index |