home *** CD-ROM | disk | FTP | other *** search
- /* prompt - Display the prompt.
-
- Copyright 1986 John B. Allison */
-
- prompt(string)
- char *string;{
-
- float x, y, nx, ny;
- int height, width, path = 0, mode = 0;
-
-
-
-
- nx = 0.02; ny = 0.97;
- height = width = 2;
- settext(&height, &width, &path, &mode);
- mapntow(&nx, &ny, &x, &y);
- movtcurabs(&x, &y);
- text(string);
- }