aboutsummaryrefslogtreecommitdiff
path: root/options.h
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2021-05-02 10:19:23 +0200
committerJan Sucan <jan@jansucan.com>2021-05-02 10:20:29 +0200
commit02ffe0ed4113e7b479197d0ba1b160e6280b4099 (patch)
treec7a3573039ba02983eec38267d61d86e1965bbab /options.h
parent36a92af6ee3c20c93835a34ddeb148c34ccf023c (diff)
Move the source files to a src directory
Diffstat (limited to 'options.h')
-rw-r--r--options.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/options.h b/options.h
deleted file mode 100644
index 71259aa..0000000
--- a/options.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef OPTIONS_H
-#define OPTIONS_H
-
-#include <stdbool.h>
-#include <stdint.h>
-
-typedef struct {
- bool help;
- uint32_t sector_size;
- uint32_t buffer_size;
-
- const char *in_file_path;
- const char *ref_file_path;
- const char *out_file_path;
-} options_t;
-
-int options_parse(int argc, char **argv, options_t *const opts);
-
-#endif /* OPTIONS_H */