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