home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 1.ddi / CTEXMC.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-18  |  984 b   |  47 lines

  1. /* public domain example Ver 4.3 Release C */
  2.  
  3.  
  4. #include "ctstdr.h"
  5. #include "ctoptn.h"
  6. #ifdef CTSERVER
  7. #include "ctcomm.h"
  8. extern UCOUNT  cts_apxsiz;            /* message size */
  9. #endif
  10.  
  11.  
  12. EXTERN COUNT isam_err,isam_fil;
  13. EXTERN TEXT  ct_buf[];
  14. COUNT        CREISAM(),CLISAM();
  15.  
  16. main (argc,argv)
  17. int   argc;
  18. TEXT *argv[];
  19. {
  20.     TEXT fname[64];
  21.  
  22. #ifdef CTSERVER
  23.     cts_apxsiz = CTS_MAXSMSG;
  24. #endif
  25.     printf("\n\nc-tree(R) V4.3 Release C\n\nCreate ISAM File Example\n");
  26.     if (argc > 1) {
  27.         cpybuf(fname,*++argv,64);
  28.         printf("\n\t\tParameter File>> %s\n",fname);
  29.     } else {
  30.         printf("\n\t\tEnter Parameter File Name>> ");
  31.         gets(ct_buf);
  32.         cpybuf(fname,ct_buf,64);
  33.     }
  34.  
  35.     if (CREISAM(fname))
  36.         printf("\n\nCould not create isam. Error codes %d %d",
  37.             isam_err,isam_fil);
  38.     else
  39.         printf("\n\nSuccessful creation.");
  40.     if (CLISAM())
  41.         printf("\n\nError during close with codes %d %d.",isam_err,
  42.             isam_fil);
  43.     exit(0);
  44. }
  45.  
  46. /* end of ctexmc.c example program */
  47.