home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V6 / usr / source / iolib / clenf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1975-05-13  |  102 b   |  7 lines

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