home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 223_01 / strlen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-12-31  |  384 b   |  11 lines

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