lang-bootstrap/05/musl-final/src/string/strpbrk.c
2025-04-05 10:55:40 +01:00

7 lines
118 B
C

#include <string.h>
char *strpbrk(const char *s, const char *b)
{
s += strcspn(s, b);
return *s ? (char *)s : 0;
}