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