blob: 09e1710278414a3ed1c0f3dac22d3c7256d94036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef PARSER_H
#define PARSER_H
#include "config.h"
void parse_config();
void load_full_build(struct project_t*, struct build_t*);
void argv_to_path(int, char**);
void parse_path(const char*);
void parse_query(const char*);
#endif
|