execute: add lif_execute_opts structure
This commit is contained in:
parent
a567d5d0f5
commit
4006b38ffa
2 changed files with 13 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue