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