Back out iswascii change from prev. commit, iswascii was right,

some overlook from me.
This commit is contained in:
Andrey A. Chernov 2007-10-14 10:23:54 +00:00
parent 98e7b7536b
commit ce0d9ca3db
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=172630

View File

@ -106,7 +106,7 @@ __END_DECLS
#define towupper(wc) __toupper(wc)
#if __BSD_VISIBLE
#define iswascii(wc) ((wc) < 0x80)
#define iswascii(wc) (((wc) & ~0x7F) == 0)
#define iswhexnumber(wc) __istype((wc), _CTYPE_X)
#define iswideogram(wc) __istype((wc), _CTYPE_I)
#define iswnumber(wc) __istype((wc), _CTYPE_D)