tolower.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
tolower.c (116B)
---
1 #define __USE_MACROS
2 #include <ctype.h>
3 #undef tolower
4
5 int
6 tolower(int c)
7 {
8 return (isupper(c)) ? c | 0x20 : c;
9 }