1: /*
   2:  * Returns the number of
   3:  * non-NULL bytes in string argument.
   4:  */
   5: 
   6: strlen(s)
   7: register char *s;
   8: {
   9:     register n;
  10: 
  11:     n = 0;
  12:     while (*s++)
  13:         n++;
  14:     return(n);
  15: }

Defined functions

strlen defined in line 6; used 118 times
Last modified: 1979-01-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 333
Valid CSS Valid XHTML 1.0 Strict