home *** CD-ROM | disk | FTP | other *** search
- h44571
- s 00022/00000/00000
- d D 1.1 95/07/04 20:12:43 tim 1 0
- c
- e
- u
- U
- f e 0
- t
- T
- I 1
- #include <stdio.h>
- #include <string.h>
- #include "project.h"
- /* start of ancilary data file functions */
- /* delfile - physicaly delete the data file */
- delfile(llcur, llstart)
- struct ll * llcur,* llstart;
- {
- char dfname[1024] ; ;
- if (filedbg == TRUE)
- printf("CALL: delfile (llcur = OMITTED, llstart = OMITTED)");
- if (unlink(dfname) == 0)
- return(TRUE) ;
- else
- {
- printf("FILE ERROR: delfile, error in deleting file %s", dfname) ;
- return(FILEERR) ;
- }
- }
-
- /* end of ancilary data file functions */
-
- E 1
-