/*
   makeqif.c

   Creates the tab-delimited ".qif" file used by www.shareware.com to
   index the FTP site.
   
   For UMich's Atari 8-bit archive.
   ftp://atari.archive.umich.edu/atari/8bit/
   
   by Bill Kendrick
   kendrick@zippy.sonoma.edu
   kendric@terminator.rs.itd.umich.edu

   October 1, 1997 - October 1, 1997
*/

/*
   QIF file format:

   path-to-file [tab] YYMMDD [tab] Bytes [tab] Description
*/

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main(int argc, char * argv[])
{
  FILE * fi;
  
  fi = fopen("atari8.qif", "w");
}

