home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume5 / smallc / part3 / lib / strlen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  140 b   |  9 lines

  1. #include <stdio.h>
  2. /* return length of string, reference CPL p 36 */
  3. strlen(s) char *s;{
  4.     int i;
  5.     i = 0;
  6.     while (*s++) i++;
  7.     return (i);
  8.     }
  9.