home *** CD-ROM | disk | FTP | other *** search
- /*
- ┌────────────────────────────────────────────────────────────────────────────┐
- │jzbigstr.c │
- │Write a big string to the screen at a given position. │
- │Usage: │
- │ jzbigstr("JazSoft",0,0,'█'); │
- │ │
- │ ████ ████ ███ █ │
- │ ██ ██ ██ ██ ██ ██ │
- │ ██ ████ ██████ ███ ████ ██ █████ │
- │ ██ ██ █ ██ ███ ██ ██ ████ ██ │
- │ ██ ██ █████ ██ ███ ██ ██ ██ ██ │
- │ ██ ██ ██ ██ ██ █ ██ ██ ██ ██ ██ ██ █ │
- │ ████ ███ ██ ██████ ████ ████ ████ ██ │
- │ │
- │ (C) JazSoft Software by Jack A. Zucker (301) 794-5950 │
- └────────────────────────────────────────────────────────────────────────────┘
- */
-
- jzbigstr(fstr,frow,fcol,fchar,fattr)
- char *fstr;
- int frow,fcol;
- char fchar;
- int fattr;
- {
- while (*fstr) {
- jzbigltr(*fstr++,frow,fcol,fchar,fattr);
- fcol += 8;
- }
- }