4.3BSD/usr/contrib/spms/src/lib/libspms/src/ppathhead.c

Compare this file to the similar file:
Show the results in this format:

/* $Header$ */

/*
 * Author: Peter J. Nicklin
 */

/*
 * ppathhead() removes tail of project pathname and returns pathname.
 * The tail is defined as that part of the pathname after the last separator.
 */
#include "null.h"
#include "path.h"

char *
ppathhead(ppathname)
	register char *ppathname;
{
	register char *ls;		/* last separator character */
	register char *p;		/* project pathname pointer */

	ls = NULL;
	for (p = ppathname; *p != '\0'; p++)
		if (*p == _PPSC)
			ls = p;
	if (ls != NULL) *ls = '\0';
	return(ppathname);
}