diff options
| author | David Moc <personal@cdatgoose.org> | 2026-05-30 21:53:05 +0200 |
|---|---|---|
| committer | David Moc <personal@cdatgoose.org> | 2026-05-30 21:53:05 +0200 |
| commit | e930cc6bdc7f62befac063d7d9d016ffb0a64f1a (patch) | |
| tree | 52118a1e990ae88f5f0410c8caea129609e22e19 /include/config.h | |
Added the old repo, refactored it, added the C jit.
Diffstat (limited to 'include/config.h')
| -rw-r--r-- | include/config.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h new file mode 100644 index 0000000..e7445d8 --- /dev/null +++ b/include/config.h @@ -0,0 +1,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 |
