home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / DLIBSSRC.ZIP / STRLEN.C < prev    next >
Encoding:
Text File  |  1987-06-14  |  213 b   |  14 lines

  1. int strlen(string)
  2. register char *string;
  3. /*
  4.  *    Returns the number of characters in a string, not including the
  5.  *    terminating '\0'.
  6.  */
  7. {
  8.     register int n = 0;
  9.  
  10.     while(*string++)
  11.         ++n;
  12.     return(n);
  13. }
  14.