GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
3
Releases
2
Fork
: 0
ohpnjrpnicow
/
UbixOS
Transfer to URL with SHA
Find file
Newer
Older
tree:
64d697a3c5
Branches
Tags
×
1.0-RELEASE
1.5-RELEASE
master
UbixOS
/
Dump
/
hybos
/
lib
/
char
/ isupper.c
cwolsen
on 31 Oct 2018
91 bytes
Big Dump
Raw
Blame
History
#include <stdbool.h> bool isupper(const char c) { return (c >= 'A' && c <= 'Z'); }