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