#ifndef __OPTION_H #define __OPTION_H #include struct option { char *file_name; bool fullscreen; bool show_info; }; extern const struct option *options; void parse_options(int argc, char **argv); #endif