Annotation of researchv10no/cmd/nupas/libc/strings.c, revision 1.1

1.1     ! root        1: extern char *index(), *rindex();
        !             2: 
        !             3: char*
        !             4: strchr(s,c)
        !             5: char *s;
        !             6: int c;
        !             7: {
        !             8:        return index(s,c);
        !             9: }
        !            10: char*
        !            11: strrchr(s,c)
        !            12: char *s;
        !            13: int c;
        !            14: {
        !            15:        return rindex(s,c);
        !            16: }

unix.superglobalmegacorp.com

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