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

  1. /*  prompt  -  Display the prompt.
  2.  
  3.         Copyright 1986 John B. Allison                */
  4.  
  5. prompt(string)
  6.   char *string;{
  7.  
  8.   float x, y, nx, ny;
  9.   int   height, width, path = 0, mode = 0;
  10.  
  11.  
  12.  
  13.  
  14.     nx = 0.02; ny = 0.97;
  15.     height = width = 2;
  16.     settext(&height, &width, &path, &mode);
  17.     mapntow(&nx, &ny, &x, &y);
  18.     movtcurabs(&x, &y);
  19.     text(string);
  20. }
  21.