#include <string.h> char *strpbrk(const char *p, const char *q);
strpbrk() searches for the first character in p that also appears in q.
NULL, if there is no such character in p; a pointer to the character otherwise.
strchr(),
strcspn(),
strrchr(), and
strspn()