Declare string uppercase/lowercase functions unconditionally.

Avoid naming them str*(), because such names are reserved by ISO C.
This commit is contained in:
Anthony J. Bentley
2016-09-05 01:39:43 -06:00
parent a8c603a7e8
commit 6e0aca47d4
3 changed files with 8 additions and 11 deletions

View File

@@ -59,9 +59,7 @@ extern void yyunputbytes(ULONG count);
extern YY_BUFFER_STATE pCurrentBuffer;
#ifdef __GNUC__
extern void strupr(char *s);
extern void strlwr(char *s);
#endif
extern void upperstring(char *s);
extern void lowerstring(char *s);
#endif