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 */
- #include <stdio.h>
- #include <conio.h>
- #include "iolib.h"
- #include "ioed.h"
-
- /* define data */
- int myint;
- char mychar=' ';
- float myfloat;
- char mystring[31];
- char myed[5][26];
-
- #include "test.c" /* formgen output */
-
- main()
- {
- nobeep=TRUE;
- displayme();
- fillme();
- editme();
- }
-
-