summaryrefslogtreecommitdiffstats
path: root/execute.h
blob: bf31e5e8ebb4c09a5796e3cc5cb9059091a4f923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef EXECUTE_H
#define EXECUTE_H
#include "bytecode.h"


struct bytecode* jq_compile(const char* str);

void jq_init(struct bytecode* bc, jv value);
jv jq_next();
void jq_teardown();


#endif