1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-27 13:47:42 +00:00
This adds several common patterns, which are defined in
boot.janet. This essentially gives more primitive patterns
to work with out of the box.

Fix build when JANET_REDUCED_OS is defined.
This commit is contained in:
Calvin Rose
2019-12-14 20:39:14 -06:00
parent bc8ee207d5
commit f1afc5b0b4
8 changed files with 88 additions and 39 deletions

View File

@@ -72,6 +72,7 @@ const JanetKV *janet_dict_find(const JanetKV *buckets, int32_t cap, Janet key);
Janet janet_dict_get(const JanetKV *buckets, int32_t cap, Janet key);
void janet_memempty(JanetKV *mem, int32_t count);
void *janet_memalloc_empty(int32_t count);
JanetTable *janet_get_core_table(const char *name);
const void *janet_strbinsearch(
const void *tab,
size_t tabcount,