execute: add lif_execute_opts structure

This commit is contained in:
Ariadne Conill 2020-07-23 08:22:26 -06:00
parent a567d5d0f5
commit 4006b38ffa
2 changed files with 13 additions and 2 deletions

View file

@ -19,6 +19,11 @@
#include <stdarg.h>
#include <stdbool.h>
extern bool lif_execute_fmt(char *const envp[], const char *fmt, ...);
struct lif_execute_opts {
bool verbose;
bool mock;
};
extern bool lif_execute_fmt(const struct lif_execute_opts *opts, char *const envp[], const char *fmt, ...);
#endif