home *** CD-ROM | disk | FTP | other *** search
- /*
- * isam close routine
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #include "ctstdr.h" /* standard i/o header */
- #include "ctoptn.h" /* c-tree configuration options */
- #include "ctstrc.h" /* c-tree data structures */
- #include "ctgvar.h" /* c-tree global variables */
- #include "ctisam.h" /* c-tree isam header */
-
- #ifdef RTREE
- #ifdef PARMFILE
- #include "rtpars.h"
- #include "rtstrc.h"
-
- EXTERN RKEY usrkey[];
- EXTERN RDAT usrdat[];
- #endif
- #endif
-
- COUNT CLISAM()
- {
- COUNT i,err_flag;
- COUNT CLSFIL(),ierr();
- VOID mbfree();
-
- #ifdef RTREE
- #ifdef PARMFILE
- FAST CTFILE *ctnum;
- FAST COUNT j;
- #endif
- #endif
-
- if (ct_key == NULL) /* no c-tree initialization */
- return(uerr_cod = 0);
-
- #ifdef RTREE
- #ifdef PARMFILE
- for (i = 0; i < ct_mxfil; i++) {
- ctnum = ct_key + i;
- if (ctnum->chnacs == 'y' || ctnum->chnacs == 'v')
- if (ctnum->clstyp != IDX_CLOSE && ct_dtmap[i] == YES) {
- mbfree(usrdat[i].fldnam[1]);
- mbfree(usrdat[i].fldnam[2]);
- } else if (ctnum->clstyp == IDX_CLOSE &&
- ct_dtmap[i] == YES) {
- for (j = 0; j <= ctnum->nmem; j++)
- mbfree(usrkey[i + j].rsymb);
- i += ctnum->nmem;
- }
- }
- #endif
- #endif
-
- isam_err = err_flag = 0;
- for (i = 0; i < ct_mxfil; i++)
- if (ct_dtmap[i]) {
- if (CLSFIL(i,(ct_key + i)->flmode)) {
- if (!err_flag)
- err_flag = ierr(uerr_cod,i);
- } else {
- ct_dtmap[i] = 0;
- cur_recno[i] = DRNZERO;
- }
- }
-
- mbfree(ct_origin);
- ct_origin = NULL;
- mbfree(ct_key);
- ct_key = ct_vat = ct_dat = NULL;
- mbfree(ct_btree);
- ct_btree = NULL;
- mbfree(ct_savset);
- ct_savset = NULL;
- ct_mxfil = 0;
- #ifdef CTSERVER
- STPUSR();
- #endif
- return(err_flag);
- }
-
- /* end of cticls.c */
-