blob: 007aa9ce1af442140b860d2692435e9fc245878d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PARSERSETTINGS_H_
#define PARSERSETTINGS_H_
#include <string>
extern int parser_error_pos;
void parser_init(const std::string &applicationpath);
void add_librarydir(const std::string &libdir);
std::string locate_file(const std::string &filename);
#endif
|