index
:
musl
awilfox/monotonic-dns
lookup-serv
master
posix-compliance
ustat
The musl libc tree (WIP / dev branches)
root
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
ctype
/
isascii.c
blob: 3af0a10d4f0975c8082553601b83246f372e76fe (
plain
) (
blame
)
1
2
3
4
5
6
#include
<ctype.h>
int
isascii
(
int
c
)
{
return
!
(
c
&~
0x7f
);
}