1 #include <string.h>
2 
strpbrk(const char * s,const char * b)3 char* strpbrk(const char* s, const char* b) {
4     s += strcspn(s, b);
5     return *s ? (char*)s : 0;
6 }
7