home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
c
/
jazlib.arc
/
JZLOGO.C
< prev
next >
Wrap
Text File
|
1986-04-30
|
424b
|
21 lines
#include <jzscreen.h>
jzlogo()
{
int wscan;
cls(LIGHTGRAY);
jzbigstr("(c)JazSoft",2,1,'░',RED);
jzbigstr("(c)JazSoft",1,0,'█',CYAN);
jzbigstr("By Jaz",13,18,'░',GREEN);
jzbigstr("By Jaz",12,17,'▒',MAGENTA);
jzbigstr("By Jaz",11,16,'▓',YELLOW);
jzscrprn("Press <Enter> to continue...",24,0,CYAN | BLINK);
jzloccur(24,0);
do ; while (jzinkey(&wscan)!= 13);
}