]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/string/strpbrk.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / string / strpbrk.c
1 #include <string.h>
2
3 char *strpbrk(const char *s, const char *b)
4 {
5 s += strcspn(s, b);
6 return *s ? (char *)s : 0;
7 }