home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / STRLEN.C < prev    next >
Text File  |  1987-10-04  |  128b  |  10 lines

  1. /*
  2. ** return length of s 
  3. */
  4. strlen(s) char *s; {
  5.   char *t;
  6.   t = s - 1;
  7.   while (*++t) ;
  8.   return (t - s);
  9.   }
  10.