Annotation of researchv9/libc/gen/toupper.c, revision 1.1

1.1     ! root        1: int
        !             2: toupper(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.