/* Kurt Schwehr - 9/94       */
/* schwehr@cs.stanford.edu                                  */

/* 
   Generic wrapper for working on raster files.
*/

/*
*/

#include <stdio.h>
#include <math.h>

void main() {

  char infile[1024],outfile[1024];
  FILE *InFile,*OutFile;


  printf ("Input File:");
  scanf ("%s",infile);
  printf ("Output file:");
  scanf ("%s",outfile);
  InFile = fopen (infile,"r");
  OutFile = fopen (outfile,"w");

  /* Loop through for each line in the image raster file */

  fclose (InFile);
  fclose (OutFile);
  printf ("\n");
}
