home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / zc.lzh / ZC / ZCSRC.LZH / IOLib / strlib / strlen.c < prev    next >
Encoding:
Text File  |  1988-11-09  |  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.