home *** CD-ROM | disk | FTP | other *** search
- /*
- * delete file 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 "cterrc.h" /* c-tree error codes */
- #include "ctstrc.h" /* c-tree data structures */
- #include "ctgvar.h" /* c-tree global variables */
-
- COUNT DELFIL(filno)
- COUNT filno;
- {
- TEXT fname[MAX_NAME];
- PFAST CTFILE *ctnum;
-
- COUNT CLSFIL(),dltfil();
- CTFILE *tstfnm();
-
- if ((ctnum = tstfnm(filno)) == NULL)
- return(uerr_cod);
- else if (ctnum->flmode & NONEXCLUSIVE)
- return(uerr_cod = DLTP_ERR);
- strcpy(fname,ctnum->flname);
- if (CLSFIL(filno,ctnum->flmode) || dltfil(fname))
- return(uerr_cod);
- else
- return(uerr_cod = NO_ERROR);
- }
-
- /* end of ctdelf.c */
-