aboutsummaryrefslogtreecommitdiffstats
path: root/src/opt.h
blob: 10bc4c93495552da8c7f8d53bcd125612a6eafb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef EVERY_OPT_H
#define EVERY_OPT_H

enum every_opt_outputmode {
	EVERY_OPT_PRINTMODE_CONSOLE = 0,
	EVERY_OPT_PRINTMODE_SCRIPT = 1,
};

void opt_parse(int argc, char **argv);

const char* opt_confpath_str(void);
enum every_opt_outputmode opt_outputmode(void);

#endif