|
|
1.1 root 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: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.