summaryrefslogtreecommitdiffstats
path: root/backend/args.h
blob: 7b87936c47737c1105db3539be8b56db4e2e159d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CMDLINE_ARGS_H_
#define CMDLINE_ARGS_H_

struct cmdline_args {
	int background;
	int loglevel;
	const char *logfile;
	const char *pidfile;
	int force;
};

extern struct cmdline_args cmdargs;

int parse_commandline(int argc, char **argv);

#endif /* CMDLINE_ARGS_H_ */
bues.ch cgit interface