SysIII/usr/src/lib/libPW/strend.c

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

static char Sccsid[]="@(#)strend	3.1";
char *strend(p)
register char *p;
{
	while (*p++)
		;
	return(--p);
}