mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
14 lines
195 B
C
14 lines
195 B
C
|
#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
|