home *** CD-ROM | disk | FTP | other *** search
- /*
- * Variable Length Application Interface
- *
- * 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) 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"
- #include "ctoptn.h"
- #include "ctstrc.h"
- #include "cterrc.h"
- #include "ctcomm.h"
-
- extern MESSAGE cts_msg;
- extern COUNT uerr_cod;
-
- CTFILE *tstfnm();
- COUNT ctapxe(),recwrt(),recred();
- POINTER ctapxv();
-
- COUNT WRTVREC(datno,recbyt,recptr,varlen)
- COUNT datno;
- POINTER recbyt;
- TEXT *recptr;
- VRLEN varlen;
- {
- if (tstfnm(datno) == NULL)
- return(uerr_cod);
- cts_msg.mretc = VAR1st; /* signal 1st segment of var len record */
- return(recwrt(datno,recbyt,recptr,varlen));
- }
-
- COUNT RDVREC(datno,recbyt,recptr,bufsiz)
- COUNT datno;
- POINTER recbyt;
- TEXT *recptr;
- VRLEN bufsiz;
- {
- if (tstfnm(datno) == NULL)
- return(uerr_cod);
- return(recred(datno,recbyt,recptr,bufsiz,0));
- }
-
- VRLEN GTVLEN(datno,recbyt)
- COUNT datno;
- POINTER recbyt;
- {
- if (ctapxe(datno,FN_GTVLEN,recbyt,NULL))
- return(0);
- else
- return(cts_msg.mvlen);
- }
-
- POINTER NEWVREC(datno,varlen)
- COUNT datno;
- VRLEN varlen;
- {
- POINTER retval;
-
- cts_msg.mvlen = varlen;
- if ((retval = ctapxv(datno,FN_NEWVREC,0L,NULL,NULL)) != DRNZERO)
- getsrlnum(&cts_msg);
- return(retval);
- }
-
- /* end of ctapx4.c */
-