home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
worldmap
/
demo
/
prompt.c
< prev
next >
Wrap
Text File
|
1986-01-21
|
384b
|
21 lines
/* 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);
}