/* About.c: Tell the user a little about MRBackup. */

static char *abouts[] = {
"This is MRBackup, a hard disk backup utility written by Mark Rinfret.\n",
"This program allows you to perform complete or incremental backups.\n",
"Data compression / decompression are provided to economize on floppies.\n",
"If you find this program useful or if you have any suggestions,\n",
"Send the author mail at the following addresses:\n",
"    Mark R. Rinfret\n",
"    348 Indian Avenue\n",
"    Portsmouth, Rhode Island 02871\n\n",
"    or, UseNet: mark@unisec.USI.COM\n",
(char *) 0L};

About()
{
	int i;

	for (i = 0; i < 5; ++i) WriteConsole("\n");
	for (i = 0;abouts[i];++i) {
		TypeAndSpeak(abouts[i]);
		if (!do_speech) Delay(30L); /* little over 1/2 second */
	}
}
