home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / dev / c / hce / libsource / clib / string / src / strlen.c < prev    next >
Encoding:
Text File  |  1992-09-02  |  108 b   |  10 lines

  1. int strlen(string)
  2.     register char *string;
  3.     {
  4.     register int n = 0;
  5.  
  6.     while(*string++)
  7.         ++n;
  8.     return(n);
  9.     }
  10.