home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdio / remove.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  452 b   |  26 lines

  1. @node remove, file system
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <stdio.h>
  6.  
  7. int remove(const char *file);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function removes the named @var{file} from the file system.  Unless
  13. you have an un-erase program, the file and its contents are gone for
  14. good. 
  15.  
  16. @subheading Return Value
  17.  
  18. Zero on success, nonzero on failure.
  19.  
  20. @subheading Example
  21.  
  22. @example
  23. remove("/tmp/data.tmp");
  24. @end example
  25.  
  26.