Synopsis
#include <string.h>
char *strpbrk(const char *str1, const char *str2);
Description
Finds the first character in the string str1 that matches any character specified in str2.
#include <string.h>
char *strpbrk(const char *str1, const char *str2);
Finds the first character in the string str1 that matches any character specified in str2.