home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine 1996 / ARCHIVE_96.iso / discs / mag_discs / volume_3 / issue05 / vol3no4 / C / C_4_4 < prev    next >
Text File  |  1989-12-11  |  242b  |  14 lines

  1. #include <stdio.h>
  2.  
  3. void copyfiles( FILE *source, FILE *sink )
  4.     {
  5.     int ch;
  6.     while ((ch = fgetc( source )) != EOF) fputc( ch, sink );
  7.     }
  8.  
  9. int main( int argc, char *argv[] )
  10.     {
  11.     copyfiles( stdin, stdout );
  12.     return 0;
  13.     }
  14.