blob: d925fa34be213cfbcec3a317bdc83648bf480d20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef _H_SYSLXOPT_
#define _H_SYSLXOPT_
/* These are the options we can set and their values */
struct sys_options {
unsigned int sectors;
unsigned int heads;
int raid_mode;
int stupid_mode;
int reset_adv;
const char *set_once;
int update_only;
const char *directory;
const char *device;
unsigned int offset;
};
enum long_only_opt {
OPT_NONE,
OPT_RESET_ADV,
};
void __attribute__ ((noreturn)) usage(int rv, int mode);
void parse_options(int argc, char *argv[], int mode);
extern struct sys_options opt;
extern const struct option long_options[];
extern const char short_options[];
#endif
|