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
/
iswxdigit_l.c
blob
5a4c339d48c9c3333d842651a13ddff102ca0d6f
1
#include <_ansi.h>
2
#include <wctype.h>
3
4
int
5
iswxdigit_l
(
wint_t
c
,
struct
__locale_t
*
locale
)
6
{
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'
));
10
}
11