index
:
sbos.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
userland
/
libc
/
isspace.c
blob: 9ba276655962a9381a61f7b936760d0369626370 (
plain
)
1
2
3
4
5
#include <ctype.h> int isspace(int c) { return c == ' ' || (unsigned)c-'\t' < 5; }