home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PSION / COMMS / PSIONMAI / PMFULLSO / SUNMAIL / SCCS / S2.C < prev    next >
Encoding:
Text File  |  1995-07-04  |  605 b   |  35 lines

  1. h44571
  2. s 00022/00000/00000
  3. d D 1.1 95/07/04 20:12:43 tim 1 0
  4. c 
  5. e
  6. u
  7. U
  8. f e 0
  9. t
  10. T
  11. I 1
  12. #include <stdio.h>
  13. #include <string.h>
  14. #include "project.h"
  15. /* start of ancilary data file functions */
  16. /* delfile - physicaly delete the data file */
  17. delfile(llcur, llstart)
  18. struct ll * llcur,* llstart;
  19. {
  20.     char dfname[1024] ; ;
  21.     if (filedbg == TRUE)
  22.         printf("CALL: delfile (llcur = OMITTED, llstart = OMITTED)");
  23.     if (unlink(dfname) == 0)
  24.         return(TRUE) ;
  25.     else
  26.     {
  27.         printf("FILE ERROR: delfile, error in deleting file %s", dfname) ;
  28.         return(FILEERR) ;
  29.     }
  30. }
  31.  
  32. /* end of ancilary data file functions */
  33.  
  34. E 1
  35.