fix ctype macros to cast argument to (unsigned) first
authorRich Felker <dalias@aerifal.cx>
Mon, 26 Sep 2011 22:56:56 +0000 (18:56 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 26 Sep 2011 22:56:56 +0000 (18:56 -0400)
issue reported by nsz, but it's actually not just pedantic. the
functions can take input of any arithmetic type, including floating
point, and the behavior needs to be as if the conversion implicit in
the function call took place.

include/ctype.h
include/wctype.h

index 97b9737cb18343280af09d1e4d54c6b30d63ec45..a605d089247ba7dafe0d4cc538f3875345bf7cf1 100644 (file)
@@ -16,12 +16,12 @@ int   isxdigit(int);
 int   tolower(int);
 int   toupper(int);
 
-#define isalpha(a) ((unsigned)(((a)|32)-'a') < 26)
-#define isdigit(a) ((unsigned)((a)-'0') < 10)
-#define islower(a) ((unsigned)((a)-'a') < 26)
-#define isupper(a) ((unsigned)((a)-'A') < 26)
-#define isprint(a) ((unsigned)((a)-0x20) < 0x5f)
-#define isgraph(a) ((unsigned)((a)-0x21) < 0x5e)
+#define isalpha(a) ((((unsigned)(a)|32)-'a') < 26)
+#define isdigit(a) (((unsigned)(a)-'0') < 10)
+#define islower(a) (((unsigned)(a)-'a') < 26)
+#define isupper(a) (((unsigned)(a)-'A') < 26)
+#define isprint(a) (((unsigned)(a)-0x20) < 0x5f)
+#define isgraph(a) (((unsigned)(a)-0x21) < 0x5e)
 
 
 
index af9be06909a490b168bf798f0b1fb696f6ebe0e3..3a5af6e7416db7191272685c09c5b92be1811efe 100644 (file)
@@ -36,7 +36,7 @@ wctrans_t wctrans(const char *);
 wctype_t  wctype(const char *);
 
 #undef iswdigit
-#define iswdigit(a) ((unsigned)((a)-L'0') < 10)
+#define iswdigit(a) (((unsigned)(a)-L'0') < 10)
 
 #ifdef __cplusplus
 }