1 struct option {
2     void *value;
3 };
4 void parse_options (struct option *);
cmd_grep(void)5 void cmd_grep(void)
6 {
7   struct option options[] = { { &options } };
8   parse_options(options);
9 }
10 
11