home *** CD-ROM | disk | FTP | other *** search
- /*
- * variable record length support routine header
- *
- * 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
- *
- */
-
- #ifndef LONGVARD
-
- typedef struct vrfmt { /* beginning of var len records */
- UCOUNT recmrk; /* record marker */
- /* 0xfafa active 0xfdfd deleted */
- /* 0xfbfb available space node */
- VRLEN trclen; /* total record length */
- VRLEN urclen; /* utilized record length */
- } VHDR;
-
- #else
-
- typedef struct vrfmt { /* beginning of var len records */
- VRLEN trclen; /* total record length */
- VRLEN urclen; /* utilized record length */
- UCOUNT recmrk; /* record marker */
- /* 0xfafa active 0xfdfd deleted */
- /* 0xfbfb available space node */
- } VHDR;
-
- #endif
-
-
- #define VDEL_FLAG 0xfdfd
- #define VACT_FLAG 0xfafa
- #define VNOD_FLAG 0xfbfb
- #define SIZVHDR (sizeof(UCOUNT) + 2 * sizeof(VRLEN))
-
- /* end of header */
-