repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sys/stat.h: fix typo in statx member name stx_dio_offset_align
[musl.git]
/
src
/
ctype
/
isgraph.c
blob
292d1983ec5b717e66e2db62afacb078a267fbbf
1
#include <ctype.h>
2
#undef isgraph
3
4
int
isgraph
(
int
c
)
5
{
6
return
(
unsigned
)
c
-
0x21
<
0x5e
;
7
}
8
9
int
__isgraph_l
(
int
c
,
locale_t l
)
10
{
11
return
isgraph
(
c
);
12
}
13
14
weak_alias
(
__isgraph_l
,
isgraph_l
);