strpbrk()
Syntax:
#include <string.h> char *strpbrk( const char *str1, const char *str2 );
Description:
The function strpbrk() returns a pointer to the first ocurrence in str1 of any character in str2, or NULL if none are present.
Related Topics:
strspn(), strrchr(), strstr(), strtok()



