tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Tinycc-devel] isxdigit conversion inconsistency with widechar


From: Carlos Montiers
Subject: [Tinycc-devel] isxdigit conversion inconsistency with widechar
Date: Sun, 29 Jun 2014 22:10:01 -0400

Hello.
Currently, in the last version (from git) of tiny c, when you use the function:

isxdigit it produce this call: isxdigit

but when you use the widechar version: iswxdigit :

iswxdigit produce this call: iswctype(d, _HEX)

Then, when you use isxdigit tiny c would be generate the call to:
_isctype(d, _HEX)

I use this little fix:
#undef        isxdigit
#undef        iswxdigit
#define        isxdigit(d)      _isctype(d, _HEX)
#define        iswxdigit(d)    iswctype(d, _HEX)


Carlos.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]