Sign in
mojo
/
mojo-tools
/
2c145bfc0ff543c5a79d973aac78831f87424ab1
/
.
/
fusl
/
src
/
ctype
/
isascii.c
blob: 9fb877c41907b72d298a48c89fd4c21c5e7d9513 [
file
] [
log
] [
blame
]
#include
<ctype.h>
#undef
isascii
int
isascii
(
int
c
)
{
return
!(
c
&
~
0x7f
);
}