Mini-Unix/usr/source/iolib/clenf.c

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

_clenf (s) /* counts length of string */
char *s;
{
int n;
for (n=0; *s++ != '\0'; n++);
return (n);}