#include #include #include #include char* hlower(char *p) { char c; char *x; if(p == nil) return p; for(x = p; c = *x; x++) if(c >= 'A' && c <= 'Z') *x -= 'A' - 'a'; return p; }