home *** CD-ROM | disk | FTP | other *** search
- /* test program: to test formgen output and supporting iolib */
- /* this is a typical "minimum" program to incorporate screens */
- /* stest is shorter than test, because it doesn't use ioed. */
-
- #include <stdio.h>
- #include <conio.h>
- #include "iolib.h"
-
- /* define data */
- int myint;
- char mychar=' ';
- float myfloat;
- char mystring[31];
-
- #include "stest.c" /* formgen output */
-
- main()
- {
- displayme();
- fillme();
- editme();
- }
-
-