home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / FORMGE.ZIP / DOTEST.C < prev    next >
Text File  |  1989-04-20  |  459b  |  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.