diff options
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -20,7 +20,11 @@ #include "ast.h" #include "lexer.h" -typedef struct json_object *(ut_c_fn)(struct ut_state *, struct ut_opcode *, struct json_object *); +#ifndef ARRAY_SIZE +#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) +#endif + +typedef struct json_object *(ut_c_fn)(struct ut_state *, uint32_t, struct json_object *); void ut_lib_init(struct ut_state *state, struct json_object *scope); |