Fix non-w32 builds
This commit is contained in:
parent
e36aab7783
commit
c74c7763ac
@ -55,6 +55,9 @@ extern char tl[256], tu[256];
|
||||
#define g_tolower(c) tl[(int)(uint8_t)(c)]
|
||||
#define g_toupper(c) tu[(int)(uint8_t)(c)]
|
||||
#endif
|
||||
#else
|
||||
#define g_tolower(c) tolower(c)
|
||||
#define g_toupper(c) toupper(c)
|
||||
#endif
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user