view src/ploki/main_opt.h @ 5197:4d7466cdf133

<oerjan> sed -i \'s/\xc2\xb0/\xc2\xb0\xe2\x80\x8b/\' wisdom/\'`?\'
author HackBot
date Sat, 13 Dec 2014 02:02:57 +0000
parents ac0403686959
children
line wrap: on
line source

#ifndef MAIN_OPT_H_
#define MAIN_OPT_H_

struct Options {
	int deparse;
	enum {
		DBG_OPS   = 1,
		DBG_HASH  = 2 * DBG_OPS,
		DBG_REGEX = 2 * DBG_HASH
	} debug;
	int unoptimize;
};

extern struct Options Opt;

#endif /* MAIN_OPT_H_ */