xref: /original-bsd/usr.bin/uucp/libuu/lastpart.c (revision c43e4352)
1 #ifndef lint
2 static char sccsid[] = "@(#)lastpart.c	5.1 (Berkeley) 07/02/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 }
25