GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
6
Releases
Fork
: 0
uBixOS
/
ubixos
Transfer to URL with SHA
Find file
Newer
Older
tree:
c05b79a00e
Branches
Tags
×
UBIXOS-0.01
UBIXOS-0.5
UBIXOS-1.0
UBIXOS-OLD
UBIXOS-PRE
master
ubixos
/
Dump
/
hybos
/
lib
/
string
/ tolower.c
cwolsen
on 31 Oct 2018
111 bytes
Big Dump
Raw
Blame
History
char *tolower(char* s) { while(*s++) if(*s >= 'A' && *s <= 'Z') *s += 'a' - 'A'; return s; }