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