summaryrefslogtreecommitdiff
path: root/src/option.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/option.h')
-rw-r--r--src/option.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/option.h b/src/option.h
deleted file mode 100644
index 33b8335..0000000
--- a/src/option.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#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