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