aboutsummaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
authorDavid Moc <personal@cdatgoose.org>2026-05-30 21:53:05 +0200
committerDavid Moc <personal@cdatgoose.org>2026-05-30 21:53:05 +0200
commite930cc6bdc7f62befac063d7d9d016ffb0a64f1a (patch)
tree52118a1e990ae88f5f0410c8caea129609e22e19 /include/config.h
Added the old repo, refactored it, added the C jit.
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h14
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