Annotation of researchv9/libc/gen/tolower.c, revision 1.1.1.1

1.1       root        1: int
                      2: tolower(c)
                      3: register int c;
                      4: {
                      5:        if(c >= 'A' && c <= 'Z')
                      6:                c -= 'A' - 'a';
                      7:        return(c);
                      8: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.