10 lines
194 B
C
10 lines
194 B
C
|
#pragma once
|
||
|
|
||
|
#include <libreborn/libreborn.h>
|
||
|
|
||
|
#define OPTION(name, ...) bool name;
|
||
|
struct options_t {
|
||
|
#include "option-list.h"
|
||
|
};
|
||
|
#undef OPTION
|
||
|
options_t parse_options(int argc, char *argv[]);
|