ref: d3da2e1b89f30f404c3d11053680098f1b7bf677 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'); }