1BSD/portlib/__length.c

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

__length(s)
char	*s;
{
	register int	l;
	register char	*p;

	p = s;
	l = 0;
	while (*p++)
		l++;
	return(l);
}