mirror of
https://github.com/fluencelabs/musl
synced 2025-06-29 14:42:01 +00:00
8 lines
118 B
C
8 lines
118 B
C
![]() |
#include <string.h>
|
||
|
|
||
|
char *strpbrk(const char *s, const char *b)
|
||
|
{
|
||
|
s += strcspn(s, b);
|
||
|
return *s ? (char *)s : 0;
|
||
|
}
|