mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 09:02:44 +00:00
Back out iswascii change from prev. commit, iswascii was right,
some overlook from me.
This commit is contained in:
parent
98e7b7536b
commit
ce0d9ca3db
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=172630
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user