Sign in
android
/
platform
/
external
/
musl
/
aa59d7880b1194c821029d464f93561a2600d57e
/
.
/
src
/
ctype
/
ispunct.c
blob: a491d5dc4b04d375fd0f2a3a495f2c147727a204 [
file
] [
log
] [
blame
]
#include
<ctype.h>
int
ispunct
(
int
c
)
{
return
isgraph
(
c
)
&&
!
isalnum
(
c
);
}
int
__ispunct_l
(
int
c
,
locale_t
l
)
{
return
ispunct
(
c
);
}
weak_alias
(
__ispunct_l
,
ispunct_l
);