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