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
/
isupper.c
blob: 9df4fb5d99dffc49b49e5366610f9705ebbc1cfe (
plain
)
1
2
3
4
5
#include <ctype.h> int isupper(int c) { return (c >= 'A' && c <= 'Z'); }