Sign in
mojo
/
mojo-tools
/
27d0e88f9491c00c039a930683685dbcd1e75122
/
.
/
fusl
/
src
/
ctype
/
iswgraph.c
blob: 0ea5ca3a4d57ea52c08ea53ea78df5e6b17c00d9 [
file
] [
log
] [
blame
]
#include
<wctype.h>
#include
"libc.h"
int
iswgraph
(
wint_t
wc
)
{
/* ISO C defines this function as: */
return
!
iswspace
(
wc
)
&&
iswprint
(
wc
);
}
int
__iswgraph_l
(
wint_t
c
,
locale_t
l
)
{
return
iswgraph
(
c
);
}
weak_alias
(
__iswgraph_l
,
iswgraph_l
);