diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-06-23 18:49:29 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-06-24 11:15:39 +0530 |
commit | bb33df56cbbb02650328dd201e2d9686363d15f5 (patch) | |
tree | 048b2066bff4b7b4e5c2d85212de087c2b1a73a5 /include/evanix.h | |
parent | a3c16056c2ea8083db39054271f1118aed37ccc3 (diff) |
evanix: init arg parsing
Diffstat (limited to 'include/evanix.h')
-rw-r--r-- | include/evanix.h | 15 |
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 |