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
/
isascii_l.c
blob
59b5f954da08737d3884873c3aa8ce4bb0bb2a28
1
#include <_ansi.h>
2
#include <ctype.h>
3
4
#undef isascii_l
5
6
int
7
isascii_l
(
int
c
,
struct
__locale_t
*
locale
)
8
{
9
return
c
>=
0
&&
c
<
128
;
10
}