You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[picolib/ctype] Fix for conflict between C/POSIX for iswdigit()
This commit is a trial fix to avoid the conflict between C & POSIX standard
regarding the iswdigit() and iswdigit_l() functions as mentioned in the
discussion : picolibc#872
to define iswalnum to be how C defines it (iswalpha(c) || iswdigit(c)),
and then define iswalnum_l to be iswalpha_l(c,l) || iswdigit_l(c, l)
Signed-off-by: Ahmed Shehab (Si-Vision) <[email protected]>
0 commit comments