Files
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

12 lines
173 B
C

#ifndef lint
static char sccsid[] = "@(#)strend.c 1.1 94/10/31 SMI"; /* from System III 3.1 */
#endif
char *strend(p)
register char *p;
{
while (*p++)
;
return(--p);
}