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
]
[Tinycc-devel] isxdigit conversion inconsistency with widechar
,
Carlos Montiers
<=
Re: [Tinycc-devel] isxdigit conversion inconsistency with widechar
,
Thomas Preud'homme
,
2014/06/30
Re: [Tinycc-devel] isxdigit conversion inconsistency with widechar
,
Carlos Montiers
,
2014/06/30
Prev by Date:
[Tinycc-devel] Problem using alloca
Next by Date:
Re: [Tinycc-devel] Request push
Previous by thread:
[Tinycc-devel] Problem using alloca
Next by thread:
Re: [Tinycc-devel] isxdigit conversion inconsistency with widechar
Index(es):
Date
Thread