MiniUnix/usr/source/iolib/clenf.c

Find at most related files.
including files from this version of Unix.

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