blob: c224837837695d12945735cd774e4a11a41d0c9c [file] [log] [blame]
struct option {
void *value;
};
void parse_options (struct option *);
void cmd_grep(void)
{
struct option options[] = { { &options } };
parse_options(options);
}