From: Eric Biggers Date: Sat, 30 May 2015 20:48:15 +0000 (-0500) Subject: Use explicit casting in ctype macros X-Git-Tag: v1.8.2~106 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=ab63d9f11eae3b930f0f75fe0edb6b6df1cdb280 Use explicit casting in ctype macros --- diff --git a/include/wimlib_tchar.h b/include/wimlib_tchar.h index c372b820..d8c6915c 100644 --- a/include/wimlib_tchar.h +++ b/include/wimlib_tchar.h @@ -28,8 +28,9 @@ typedef wchar_t tchar; # define tsprintf swprintf # define tfprintf fwprintf # define tvfprintf vfwprintf -# define istalpha iswalpha -# define istspace iswspace +# define istalpha(c) iswalpha((wchar_t)(c)) +# define istspace(c) iswspace((wchar_t)(c)) +# define totlower(c) towlower((wchar_t)(c)) # define tstrcmp wcscmp # define tstrncmp wcsncmp # define tstrchr wcschr @@ -55,7 +56,6 @@ typedef wchar_t tchar; # define tstrdup wcsdup # define ttempnam _wtempnam # define tgetenv _wgetenv -# define totlower(c) towlower((wchar_t)(c)) /* The following "tchar" functions do not have exact wide-character equivalents * on Windows so require parameter rearrangement or redirection to a replacement * function defined ourselves. */ @@ -87,8 +87,9 @@ typedef char tchar; # define tsprintf sprintf # define tfprintf fprintf # define tvfprintf vfprintf -# define istalpha isalpha -# define istspace isspace +# define istalpha(c) isalpha((unsigned char)(c)) +# define istspace(c) isspace((unsigned char)(c)) +# define totlower(c) tolower((unsigned char)(c)) # define tstrcmp strcmp # define tstrncmp strncmp # define tstrchr strchr @@ -114,7 +115,6 @@ typedef char tchar; # define tstrdup strdup # define ttempnam tempnam # define tgetenv getenv -# define totlower(c) tolower((unsigned char)(c)) # define TSTRDUP STRDUP # define tstrerror_r strerror_r # define trename rename