home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / FORMGE.ZIP / DOSTEST.C < prev    next >
Text File  |  1989-04-18  |  455b  |  25 lines

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