Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / ctype / iswxdigit_l.c
blob5a4c339d48c9c3333d842651a13ddff102ca0d6f
1 #include <_ansi.h>
2 #include <wctype.h>
4 int
5 iswxdigit_l (wint_t c, struct __locale_t *locale)
7 return ((c >= (wint_t)'0' && c <= (wint_t)'9') ||
8 (c >= (wint_t)'a' && c <= (wint_t)'f') ||
9 (c >= (wint_t)'A' && c <= (wint_t)'F'));