_clenf X
1: _clenf (s) /* counts length of string */ 2: char *s; 3: { 4: int n; 5: for (n=0; *s++ != '\0'; n++); 6: return (n);}