1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00
stedolan-jq/builtin.h

22 lines
275 B
C
Raw Normal View History

2012-08-16 01:00:30 +01:00
#ifndef BUILTIN_H
#define BUILTIN_H
#include "compile.h"
2012-08-16 01:00:30 +01:00
2013-05-17 03:03:42 +10:00
int builtins_bind(block*);
2012-08-16 01:00:30 +01:00
typedef void (*cfunction_ptr)(void);
struct cfunction {
cfunction_ptr fptr;
const char* name;
int nargs;
};
jv cfunction_invoke(struct cfunction* function, jv input[]);
2012-08-16 01:00:30 +01:00
#endif