index
:
grovel
main
Unnamed repository; edit this file 'description' to name the repository.
External SSH Git service user
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
ctype
/
isprint.c
blob: 504e66ed127f7d1f0cc5a9ca7456e45bf6283a9f (
plain
) (
blame
)
1
2
3
4
int
isprint
(
int
c
)
{
return
(
unsigned
)
c
-0x20
<
0x5f
;
}