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
/
ispunct_l.c
blob
eeba1f5ae11087b709e0d00762467969c2495d23
1
#include <_ansi.h>
2
#include <ctype.h>
3
4
#undef ispunct_l
5
6
int
7
ispunct_l
(
int
c
,
struct
__locale_t
*
locale
)
8
{
9
return
__locale_ctype_ptr_l
(
locale
)[
c
+
1
] &
_P
;
10
}
11