bug fixes and changes from Rick Adams
[unix-history] / usr / src / usr.bin / uucp / libuu / lastpart.c
#ifndef lint
static char sccsid[] = "@(#)lastpart.c 5.2 (Berkeley) %G%";
#endif
/*******
* char *
* lastpart(file) find last part of file name
* char *file;
*
* return - pointer to last part
*/
char *
lastpart(file)
register char *file;
{
register char *c;
char *rindex();
c = rindex(file, '/');
if (c)
return c;
else
return file;
}