Replaced calls to the custom strindex() and strrindex() functions with the

exactly equivalent and standard strchr() and strrchr() functions instead.
This commit is contained in:
dtrg
2006-07-23 20:01:02 +00:00
parent babe9eafad
commit 014be56fb0
40 changed files with 112 additions and 116 deletions

View File

@@ -2,8 +2,8 @@
#define NULL 0
#endif
#define strchr strindex
#define strrchr strrindex
#define strchr strchr
#define strrchr strrchr
extern char * strcat();
extern char * strchr();