repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
ctype
/
iswdigit_l.c
blob
29de9d38118d1261eb35b245379f90e18b4024d9
1
#include <_ansi.h>
2
#include <wctype.h>
3
4
int
5
iswdigit_l
(
wint_t
c
,
struct
__locale_t
*
locale
)
6
{
7
return
c
>= (
wint_t
)
'0'
&&
c
<= (
wint_t
)
'9'
;
8
}