home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / FGIN131.ZIP / SOURCE.ZIP / DISPLAY.C < prev    next >
C/C++ Source or Header  |  1994-02-11  |  633b  |  24 lines

  1. /****************************************************************************\
  2.  
  3. \****************************************************************************/
  4. #include "fginput.h"
  5. #include "internal.h"
  6.  
  7. /****************************************************************************\
  8.  
  9.     int display_line(char *line, const char *mask)
  10.  
  11. \****************************************************************************/
  12. int display_line(char *line, const char *mask)
  13. {
  14.  
  15.     setup(line,mask);            //Draw box
  16.     if (_AX) return(_AX);    //If error, return it
  17.  
  18.     showstring(NOCURSOR);    //Show default string
  19.  
  20.     return(IN_SUCCESS);
  21.  
  22. }
  23.  
  24.