Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
ctype
/
ispunct.c
blob: 4aa1dd49a080d993e99e27ddd2cded229b5aff89 [
file
] [
log
] [
blame
]
#include
<ctype.h>
#include
"libc.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
);