fixes from rick adams
[unix-history] / usr / src / usr.bin / uucp / libuu / lastpart.c
#ifndef lint
static char sccsid[] = "@(#)lastpart.c 5.4 (Berkeley) %G%";
#endif
#include "uucp.h"
/*LINTLIBRARY*/
/*
* find last part of file name
*
* return - pointer to last part
*/
char *
lastpart(file)
register char *file;
{
register char *c;
c = rindex(file, '/');
if (c++)
return c;
else
return file;
}