Begin work on allowing small binaries.

This commit is contained in:
Calvin Rose
2021-01-23 17:08:11 -06:00
parent 5cac8bcf9f
commit f22472a644
6 changed files with 44 additions and 26 deletions
+1
View File
@@ -1406,6 +1406,7 @@ JANET_API JanetCompileResult janet_compile(Janet source, JanetTable *env, JanetS
/* Get the default environment for janet */
JANET_API JanetTable *janet_core_env(JanetTable *replacements);
JANET_API JanetTable *janet_core_lookup_table(JanetTable *replacements);
JANET_API int janet_dobytes(JanetTable *env, const uint8_t *bytes, int32_t len, const char *sourcePath, Janet *out);
JANET_API int janet_dostring(JanetTable *env, const char *str, const char *sourcePath, Janet *out);