Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
cstring.h
Go to the documentation of this file.
1#ifndef STD_CSTRING_H_
2#define STD_CSTRING_H_
3
4#include "string.h"
5
6namespace std {
7using ::strlen;
8using ::strcpy;
9
10inline char* strchr(char* str, int c) {
11 return ::strchr(str, c);
12}
13}; // namespace std
14
15#endif
Ordon Goat.
Definition JMATrigonometric.cpp:12
char * strchr(char *str, int c)
Definition cstring.h:10