/*
* FIND is a progam was writen to help maintain files on my hard disc.
* This program should run on any CP/M 2.2 or higher revision machine.
* It was developed using CP/M 3.0 and the AZTEC C compiler vers. 1.06B.
*
* To compile:
* cc -dTINY find.c
* as find.asm
* ln find.o t.lib c.lib
*
* As this program was a quick ditch effort, I welcome any and all
* modifications that anyone makes to it. For example, anbiguous(* , ?)
* filenames are not extracted from the DMA address after the bdos
* call to "search filename". The program also does not allow the
* user to search specific user areas, it assumes a scan of user 0
* thru user 15.
*
* Have fun with it, but this program is not for resale in any form.
*
* Please send any ideas/changes/reactions to me in mail. Do not post.
*
* Jeff Gibson UUCP: {cepu,ihnp4,noao,uiucdcs}!bradley!jmg
* Bradley University ARPA: cepu!bradley!jmg@UCLA-LOCUS
* Peoria, IL 61625 PH: (309) 692-9069
*
*/
#include "stdio.h"
int drive_range[17],
DRIVES;
main(argc, argv)
int argc;
char *argv[];
{
char fn[36],
drive_name;