home *** CD-ROM | disk | FTP | other *** search
- /*
- * c-tree Low Level Library Interface #2
- *
- * 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) 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 "cterrc.h" /* c-tree error codes */
- #include "ctstrc.h" /* c-tree data structures */
-
- extern COUNT uerr_cod;
-
- #ifdef CTDEBUG
-
- #ifdef RTREE
- #define ALIMIT 1000
- #else
- #define ALIMIT 50
- #endif
-
- LOCAL struct {
- TEXT *aadr;
- UCOUNT aamt;
- } a[ALIMIT];
- LOCAL COUNT acnt,anul;
- LOCAL LONG atot,amax,alev;
- #endif
-
- TEXT *mballc(numobj,sizobj)
- unsigned int numobj,sizobj;
- {
- #ifdef CT_ANSI
- void *calloc();
- #else
- TEXT *calloc();
- #endif
-
- if (sizobj == 0 || numobj == 0) {
- numobj = 1;
- sizobj = 1; /* to avoid false NULL return */
- }
-
- #ifdef CTDEBUG
- if (acnt >= ALIMIT) {
- printf("\nError ALIMIT. atot=%ld\n",atot);
- exit(2);
- }
-
- atot += a[acnt].aamt = numobj * sizobj;
- alev += a[acnt].aamt;
- if (alev > amax)
- amax = alev;
- #ifdef CT_ANSI
- return(a[acnt++].aadr = (TEXT *) calloc(numobj,sizobj));
- #else
- return(a[acnt++].aadr = calloc(numobj,sizobj));
- #endif
- #else
- #ifdef CT_ANSI
- return((TEXT *) calloc(numobj,sizobj));
- #else
- return(calloc(numobj,sizobj));
- #endif
- #endif
- }
-
- /* ------------------------------------------------------------ */
-
- VOID mbfree(objptr)
- TEXT *objptr;
- {
- #ifdef CTDEBUG
- FAST COUNT i;
-
- if (objptr != NULL) {
- free(objptr);
- for (i = acnt - 1; i >= 0; i--)
- if (objptr == a[i].aadr) {
- a[i].aadr = NULL;
- alev -= a[i].aamt;
- return;
- }
- printf("\nError free. atot=%ld acnt=%d objptr=%x\n",
- atot,acnt,objptr);
- } else
- anul++;
- #else
- if (objptr != NULL)
- free(objptr);
- #endif
- }
-
- #ifdef CTDEBUG
- VOID arep(mode)
- COUNT mode;
- {
- FAST COUNT i;
-
- printf("\nacnt = %d anul = %d\n",acnt,anul);
- printf("\natot = %ld amax=%ld alev=%ld",atot,amax,alev);
- if (mode > 0) {
- for (i = 0; i < acnt; i++)
- if (a[i].aadr != NULL)
- printf("adr = %4x\tamt = %u\n",
- a[i].aadr,a[i].aamt);
- }
- }
- #endif
-
- /* --------------------------------------------------------------------
- routine to copy tree buffer contents. it does not terminate on null
- byte.
- */
-
- #ifndef cpybuf
- VOID cpybuf(dp,sp,n)
- PFAST TEXT *dp,*sp;
- PFAST UCOUNT n;
-
- {
- while (n-- != 0)
- *dp++ = *sp++;
- }
- #endif
-
- COUNT uerr(err_no)
-
- COUNT err_no;
-
- {
- return(uerr_cod = err_no);
- }
-
- VOID terr(err_no)
-
- COUNT err_no;
-
- {
- printf("\nc-tree fatal error #%d.",err_no);
- exit(0);
- }
-
- #ifdef UNIFRMAT
-
- VOID revbyt(tp,wrdcnt)
- PFAST TEXT *tp;
- PFAST COUNT wrdcnt;
- {
- TEXT ch;
-
- while (wrdcnt-- > 0) {
- ch = *tp++;
- *(tp - 1) = *tp;
- *tp++ = ch;
- }
- }
-
- #endif
-
- VOID revobj(tp,len)
- PFAST TEXT *tp;
- COUNT len;
- {
- FAST TEXT *hp;
- TEXT ch;
-
- hp = tp + len - 1;
- while (tp < hp) {
- ch = *tp;
- *tp++ = *hp;
- *hp-- = ch;
- }
- }
-
- /* end of ctclb2.c */
-