Annotation of 42BSD/usr.bin/uucp/lastpart.c, revision 1.1

1.1     ! root        1: #ifndef lint
        !             2: static char sccsid[] = "@(#)lastpart.c 5.1 (Berkeley) 7/2/83";
        !             3: #endif
        !             4: 
        !             5: /*******
        !             6:  *     char *
        !             7:  *     lastpart(file)  find last part of file name
        !             8:  *     char *file;
        !             9:  *
        !            10:  *     return - pointer to last part
        !            11:  */
        !            12: 
        !            13: char *
        !            14: lastpart(file)
        !            15: register char *file;
        !            16: {
        !            17:        register char *c;
        !            18: 
        !            19:        c = file + strlen(file);
        !            20:        while (c >= file)
        !            21:                if (*(--c) == '/')
        !            22:                        break;
        !            23:        return(++c);
        !            24: }

unix.superglobalmegacorp.com

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