PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
index.c
1#define SYSCLIB_DISABLE_BUILTINS
2#include <sysclib.h>
3
4char *index(const char *s, int c)
5{
6 return strchr(s, c);
7}