This website requires JavaScript.
Explore
Help
Sign In
auravulpes
/
FENIX_libc
Watch
1
Star
0
Fork
You've already forked FENIX_libc
0
Code
Issues
2
Pull requests
Projects
Releases
Wiki
Activity
98a53fc774
FENIX_libc
/
ctype
/
ispunct.c
5 lines
93 B
C
Raw
Normal View
History
Unescape
Escape
Woops. Fixed a stupid error
2020-12-25 04:36:51 +00:00
#
include
<ctype.h>
Initial ascii-only versions
2020-12-13 10:55:41 +00:00
int
ispunct
(
int
c
)
{
return
(
c
<
128
&
&
!
(
isalnum
(
c
)
|
|
iscntrl
(
c
)
)
)
;
}
Reference in a new issue
Copy permalink