home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / strlen.c < prev    next >
Encoding:
Text File  |  1987-10-04  |  128 b   |  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.