blob: 33b833546d85f14af4034c8d5bf5e83309230071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __OPTION_H
#define __OPTION_H
#include <stdbool.h>
struct option {
char *file_name;
bool fullscreen;
bool show_info;
};
extern const struct option *options;
void parse_options(int argc, char **argv);
#endif
|