ref: a411870ee4640241e3c494367d922847da84f972 dir: /libkern/toupper.c/
toupper(int c) { if(c < 'a' || c > 'z') return c; return (c-'a'+'A'); } tolower(int c) { if(c < 'A' || c > 'Z') return c; return (c-'A'+'a'); }