home *** CD-ROM | disk | FTP | other *** search
- /* public domain example Ver 4.3 Release C */
-
-
- #include "ctstdr.h"
- #include "ctoptn.h"
- #ifdef CTSERVER
- #include "ctcomm.h"
- extern UCOUNT cts_apxsiz; /* message size */
- #endif
-
-
- EXTERN COUNT isam_err,isam_fil;
- EXTERN TEXT ct_buf[];
- COUNT CREISAM(),CLISAM();
-
- main (argc,argv)
- int argc;
- TEXT *argv[];
- {
- TEXT fname[64];
-
- #ifdef CTSERVER
- cts_apxsiz = CTS_MAXSMSG;
- #endif
- printf("\n\nc-tree(R) V4.3 Release C\n\nCreate ISAM File Example\n");
- if (argc > 1) {
- cpybuf(fname,*++argv,64);
- printf("\n\t\tParameter File>> %s\n",fname);
- } else {
- printf("\n\t\tEnter Parameter File Name>> ");
- gets(ct_buf);
- cpybuf(fname,ct_buf,64);
- }
-
- if (CREISAM(fname))
- printf("\n\nCould not create isam. Error codes %d %d",
- isam_err,isam_fil);
- else
- printf("\n\nSuccessful creation.");
- if (CLISAM())
- printf("\n\nError during close with codes %d %d.",isam_err,
- isam_fil);
- exit(0);
- }
-
- /* end of ctexmc.c example program */
-