Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / ctype / isalnum_l.c
blobdcb7e365231304d679e0d2eb03f4799262cfd6aa
1 #include <_ansi.h>
2 #include <ctype.h>
4 #undef isalnum_l
6 int
7 isalnum_l (int c, struct __locale_t *locale)
9 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L|_N);