mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
1741d8c161
The debugging features previously available via JQ_DEBUG are now command-line options.
17 lines
302 B
C
17 lines
302 B
C
#ifndef EXECUTE_H
|
|
#define EXECUTE_H
|
|
#include "bytecode.h"
|
|
|
|
|
|
struct bytecode* jq_compile(const char* str);
|
|
|
|
typedef struct jq_state jq_state;
|
|
enum {JQ_DEBUG_TRACE = 1};
|
|
|
|
void jq_init(struct bytecode* bc, jv value, jq_state **, int flags);
|
|
jv jq_next(jq_state *);
|
|
void jq_teardown(jq_state **);
|
|
|
|
|
|
#endif
|