aboutsummaryrefslogtreecommitdiff
path: root/clocl/options.h
blob: 086e49ca84d1cb549f9ed374aa9f7c573ca1ae3f (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 _OPTIONS_H_
#define _OPTIONS_H_

#include <string>

extern int opt_help;
extern int opt_verbose;
extern int opt_keep;
extern int opt_debug;
extern int opt_lib;
extern int opt_txt;
extern int opt_w;
extern int opt_Werror;
extern int opt_builtin;

extern std::string cl_options;
extern std::string cl_incdef;
extern std::vector<std::string> files_clc;
extern std::vector<std::string> files_c;
extern std::string              files_other;

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

#endif //_OPTIONS_H_