aboutsummaryrefslogtreecommitdiff
path: root/include/evanix.h
blob: 48fe110aceee97fb9c08ca36b3f8d2d2cfa4f040 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdbool.h>
#include <stdint.h>

#ifndef EVANIX_H

struct evanix_opts_t {
	bool isflake;
	bool isdryrun;
	bool ispipelined;
	bool close_stderr_exec;
	char *system;
	uint32_t max_build;
};

extern struct evanix_opts_t evanix_opts;

#define EVANIX_H
#endif