blob: e7445d841dbc7930c61826a80e8814aa431a6090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef ECEX_CONFIG_H
#define ECEX_CONFIG_H
#include "ecex.h"
#include "ccdjit.h"
#include <stdio.h>
int ecex_load_c_config(ecex_t *ed, const char *path);
void ecex_print_ccdjit_error(ccdjit_context *ctx);
int ecex_add_ccdjit_include_paths(ccdjit_context *ctx);
int ecex_register_host_symbols(ccdjit_context *ctx);
#endif
|