/* Compiled with Turbo C++ 1.01 */

#include <stdio.h>
#include <conio.h>
#include <process.h>
#include <time.h>
#include <bios.h>
#include <stdlib.h>

/* keyhit function */
#define RIGHT  		0x01
#define LEFT   		0x02
#define CTRL   		0x04
#define ALT    		0x08
/* keyhit function */

/* Exit Codes */
#define HLP    		1
#define DOS     	2
#define VER 		3
/* Exit Codes */

/* macro functions */
#define NIL(x) strcpy(x,"")
#define DELAY_SECONDS(x) delay(x*1000)
/* macro functions */

/* prototypes */
void Dosf(void);
void Winf(char *drive, char *path, char *name, char *args, char intro, char changed);
int main(int argc, char *argv[]);
int wherey(void);
int keyhit(void);
int argerror(char *argv, char option[], int Dlay);
int center(char *string);
/* prototypes */

/* copyright */
static char Copyright[]="Copyright (c)1992 Earl W. Hartsell";
/* copyright */