home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_05 / 2n05063a < prev    next >
Text File  |  1991-03-27  |  206b  |  17 lines

  1.  
  2. /*
  3.  * a portable Standard C implementation of strlen using
  4.  * size_t
  5.  */
  6. size_t strlen(const char s[])
  7.     {
  8.     size_t i = 0;
  9.  
  10.     while (s[i] != '\0')
  11.         ++i;
  12.     return i;
  13.     }
  14.  
  15.  
  16.  
  17.