AUSAM/source/libc/strlen.c

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

strlen(s)
register char *s;
{
	register n;

	n = 0;
	while (*s++)
		n++;
	return(n);
}