home *** CD-ROM | disk | FTP | other *** search
- #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 */
-
-