mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
19 lines
232 B
C
19 lines
232 B
C
#ifndef BUILTIN_H
|
|
#define BUILTIN_H
|
|
|
|
#include "compile.h"
|
|
|
|
block builtins_bind(block);
|
|
|
|
|
|
typedef void (*cfunction_ptr)(jv input[], jv output[]);
|
|
|
|
struct cfunction {
|
|
cfunction_ptr fptr;
|
|
const char* name;
|
|
int nargs;
|
|
};
|
|
|
|
|
|
#endif
|