home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_10 / 1010020b < prev    next >
Text File  |  1992-08-12  |  227b  |  16 lines

  1.  
  2. Listing 9 -- the file strlen.c
  3.  
  4. /* strlen function */
  5. #include <string.h>
  6.  
  7. size_t (strlen)(const char *s)
  8.     {    /* find length of s[] */
  9.     const char *sc;
  10.  
  11.     for (sc = s; *sc != '\0'; ++sc)
  12.         ;
  13.     return (sc - s);
  14.     }
  15.  
  16.