/* About.c: Tell the user a little about MRBackup. */ static char *abouts[] = { "This is M R Backup, a hard disk backup utility written by Mark Rinfret.\n", "This program allows you to perform complete or incremental backups.\n", "Data compression and 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 Rinfret\n", " 348 Indian Avenue\n", " Portsmouth, Rhode Island 02871\n\n", " or, mrr@amanpt1.ZONE1.COM\n" " or, rayssd!galaxia!amanpt1!mrr.\n\n", "You may obtain the source for this program from Usenet archives,\n", "by sending a floppy disk and postpaid mailer to the above address,\n", "or by sending five dollars to the above address.\n", (char *) 0L}; About() { int i; for (i = 0; i < 5; ++i) WriteConsole("\n"); for (i = 0;abouts[i];++i) { TypeAndSpeak(abouts[i]); if (!doSpeech) Delay(30L); /* little over 1/2 second */ } }