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: a922d9107204d9010354a2ea79e4b7be2e23eac7 (
plain
)
1
2
3
4
5
#include <ctype.h> int isspace(int c) { return c == ' ' || (unsigned)c - '\t' < 5; }