Subversion Repositories HelenOS

Rev

Rev 3277 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef RM_H
  2. #define RM_H
  3.  
  4. #define RM_BOGUS 0
  5. #define RM_FILE  1
  6. #define RM_DIR   2
  7.  
  8. /* Prototypes for the rm command, excluding entry points */
  9. extern unsigned int rm_recursive(const char *);
  10. extern unsigned int rm_single(const char *);
  11. extern unsigned int rm_scope(const char *);
  12. #endif /* RM_H */
  13.  
  14.