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