summaryrefslogtreecommitdiff
path: root/src/globals.h
blob: b2ea67ae0eb3c3c890705f576b9185fc95075b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _RE2C_GLOBALS_
#define _RE2C_GLOBALS_

#include <string>

#include "src/conf/opt.h"
#include "src/conf/warn.h"
#include "src/util/c99_stdint.h"

namespace re2c
{

extern bool bUsedYYBitmap;
extern bool bWroteGetState;
extern bool bWroteCondCheck;
extern uint32_t last_fill_index;
extern std::string yySetupRule;

extern Opt opts;
extern Warn warn;

} // end namespace re2c

#endif // _RE2C_GLOBALS_