aboutsummaryrefslogtreecommitdiff
path: root/include/evanix.h
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-06-23 18:49:29 +0530
committersinanmohd <sinan@sinanmohd.com>2024-06-24 11:15:39 +0530
commitbb33df56cbbb02650328dd201e2d9686363d15f5 (patch)
tree048b2066bff4b7b4e5c2d85212de087c2b1a73a5 /include/evanix.h
parenta3c16056c2ea8083db39054271f1118aed37ccc3 (diff)
evanix: init arg parsing
Diffstat (limited to 'include/evanix.h')
-rw-r--r--include/evanix.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/evanix.h b/include/evanix.h
new file mode 100644
index 0000000..aa53b9f
--- /dev/null
+++ b/include/evanix.h
@@ -0,0 +1,15 @@
+#include <stdbool.h>
+
+#ifndef EVANIX_H
+
+struct evanix_opts_t {
+ bool isflake;
+ bool isdryrun;
+ bool ispipelined;
+ bool close_stderr_exec;
+};
+
+extern struct evanix_opts_t evanix_opts;
+
+#define EVANIX_H
+#endif