Subversion Repositories HelenOS

Rev

Rev 3277 | Rev 3337 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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