home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 221_01 / fputs.c < prev    next >
Text File  |  1979-12-31  |  256b  |  12 lines

  1. #include stdio.h
  2. fputs(s, iop)  /* put string s in file iop */
  3. char *s;
  4. int iop;
  5. {
  6.   int c;
  7.  
  8.   while(c = *s++)
  9.     putc(c, iop);
  10. }
  11.  
  12.