1: #include <stdio.h>
   2: 
   3: /*
   4:  * Print l characters starting at s on file f.
   5:  */
   6: 
   7: putstr(f, s, l)
   8: register FILE *f;
   9: register char *s;
  10: register int l;
  11:    {
  12:    while (l--)
  13:       putc(*s++, f);
  14:    }

Defined functions

putstr defined in line 7; used 5 times
Last modified: 1984-11-18
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 672
Valid CSS Valid XHTML 1.0 Strict