Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
ctype
/
isascii.c
blob: 54ad3bf028a6728102e2e311284fece49f2eac71 [
file
] [
log
] [
blame
]
#include
<ctype.h>
#undef
isascii
int
isascii
(
int
c
)
{
return
!(
c
&~
0x7f
);
}