home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d128
/
mrbackup
/
about.c
< prev
next >
Wrap
Text File
|
1988-01-02
|
763b
|
25 lines
/* 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 */
}
}