mirror of
https://github.com/mirror/wget.git
synced 2026-09-05 06:12:50 +08:00
[svn] Cosmetic change.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2003-09-19 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* safe-ctype.h (_sch_test): Cast BIT to unsigned char, like latest
|
||||
gcc does.
|
||||
|
||||
2003-09-19 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* wget.h (BOUNDED_TO_ALLOCA): Evaluate PLACE only once.
|
||||
|
||||
@@ -100,7 +100,7 @@ enum {
|
||||
/* Character classification. */
|
||||
extern const unsigned short _sch_istable[256];
|
||||
|
||||
#define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (bit))
|
||||
#define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned char)(bit))
|
||||
|
||||
#define ISALPHA(c) _sch_test(c, _sch_isalpha)
|
||||
#define ISALNUM(c) _sch_test(c, _sch_isalnum)
|
||||
|
||||
Reference in New Issue
Block a user