home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / screen / formge / dotest.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-20  |  459 b   |  26 lines

  1. /* test program: to test formgen output and supporting iolib  */
  2. /* this is a typical "minimum" program to incorporate screens */
  3. #include <stdio.h>
  4. #include <conio.h>
  5. #include "iolib.h"
  6. #include "ioed.h"
  7.  
  8. /* define data */
  9. int     myint;
  10. char    mychar=' ';
  11. float   myfloat;
  12. char    mystring[31];
  13. char    myed[5][26];
  14.  
  15. #include "test.c"     /* formgen output */
  16.  
  17. main()
  18. {
  19.     nobeep=TRUE;
  20.     displayme();
  21.     fillme();
  22.     editme();
  23. }
  24.  
  25.  
  26.