4.3BSD/usr/contrib/icon/rt/putstr.c

Compare this file to the similar file:
Show the results in this format:

#include <stdio.h>

/*
 * Print l characters starting at s on file f.
 */

putstr(f, s, l)
register FILE *f;
register char *s;
register int l;
   {
   while (l--)
      putc(*s++, f);
   }