diff options
| author | nirav <nirav@teisuu.com> | 2019-03-07 01:27:55 +0530 |
|---|---|---|
| committer | Dandelion <nirav@teisuu.com> | 2019-03-07 01:27:55 +0530 |
| commit | 6dd58a30761eca36544c4e815b36907eab084949 (patch) | |
| tree | c1bc857a14fffe6f35f7405f133c0ed114aec1a4 /src/option.h | |
| download | ap_client-6dd58a30761eca36544c4e815b36907eab084949.tar.gz ap_client-6dd58a30761eca36544c4e815b36907eab084949.zip | |
Initial commit
Diffstat (limited to 'src/option.h')
| -rw-r--r-- | src/option.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h new file mode 100644 index 0000000..33b8335 --- /dev/null +++ b/src/option.h @@ -0,0 +1,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 |
