Files
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

7 lines
120 B
C

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