This website requires JavaScript.
Explore
Help
Register
Sign in
darkkirb
/
old-libc-kernel
Watch
1
Star
0
Fork
You've already forked old-libc-kernel
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
dbcb30ebea
old-libc-kernel
/
ctype
/
isASCII.cpp
5 lines
102 B
C++
Raw
Normal View
History
Unescape
Escape
added a non-wide ctypes.h
2016-07-27 13:03:34 +00:00
#
include
<ctype.h>
#
include
"_ctype.h"
forgot typenames
2016-07-27 13:05:25 +00:00
extern
"
C
"
int
isascii
(
int
c
)
{
added a non-wide ctypes.h
2016-07-27 13:03:34 +00:00
return
c
>
=
0
&
&
c
<
128
;
}
Reference in a new issue
Copy permalink