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