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