summaryrefslogtreecommitdiffstats
path: root/src/jq_parser.h
blob: 809ace06ed4c8436ff74985e5a41774b106837a1 (plain)
1
2
3
4
5
6
7
8
9
#ifndef JQ_PARSER_H
#define JQ_PARSER_H
#include "locfile.h"
#include "compile.h"

int jq_parse(struct locfile* source, block* answer);
int jq_parse_library(struct locfile* locations, block* answer);

#endif