Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
musl
/
5b546faa67544af395d6407553762b37e9711157
/
.
/
src
/
ctype
/
isascii.c
blob: 54ad3bf028a6728102e2e311284fece49f2eac71 [
file
] [
log
] [
blame
]
#include
<ctype.h>
#undef
isascii
int
isascii
(
int
c
)
{
return
!(
c
&~
0x7f
);
}