xref: /aosp_15_r20/external/musl/src/string/strpbrk.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <string.h>
2 
strpbrk(const char * s,const char * b)3 char *strpbrk(const char *s, const char *b)
4 {
5 	s += strcspn(s, b);
6 	return *s ? (char *)s : 0;
7 }
8