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