home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume5 / smallc / part3 / lib / fputs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  92 b   |  6 lines

  1. #include <stdio.h>
  2.  
  3. fputs(str, fp) FILE *fp; char *str; {
  4.     while(*str) fputc(*str++, fp);
  5. }
  6.