PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
strpbrk.c
1
#define SYSCLIB_DISABLE_BUILTINS
2
#include <
sysclib.h
>
3
4
char
*strpbrk(
const
char
*s,
const
char
*b)
5
{
6
s += strcspn(s, b);
7
return
*s ? (
char
*)s : 0;
8
}
sysclib.h
iop
system
sysclib
src
musl
string
strpbrk.c
Generated on Thu Nov 14 2024 05:25:29 for PS2SDK by
1.9.8