Subversion Repositories HelenOS

Rev

Rev 3337 | Rev 3346 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3337 Rev 3338
Line 47... Line 47...
47
#define RM_VERSION "0.0.1"
47
#define RM_VERSION "0.0.1"
48
 
48
 
49
static rm_job_t rm;
49
static rm_job_t rm;
50
 
50
 
51
static struct option long_options[] = {
51
static struct option long_options[] = {
52
    { "help",       no_argument,    0,  'h' },
52
    { "help", no_argument, 0, 'h' },
53
    { "version",    no_argument,    0,  'v' },
53
    { "version", no_argument, 0, 'v' },
54
    { "recursive",  no_argument,    0,  'r' },
54
    { "recursive", no_argument, 0, 'r' },
55
    { "force",      no_argument,    0,  'f' },
55
    { "force", no_argument, 0, 'f' },
56
    { "safe",       no_argument,    0,  's' },
56
    { "safe", no_argument, 0, 's' },
57
    { 0, 0, 0, 0 }
57
    { 0, 0, 0, 0 }
58
};
58
};
59
 
59
 
60
unsigned int rm_start(rm_job_t *rm)
60
unsigned int rm_start(rm_job_t *rm)
61
{
61
{