aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/include/janet.h
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2021-03-13 19:17:07 -0600
committerCalvin Rose <calsrose@gmail.com>2021-03-13 19:17:07 -0600
commite70f64e23d805f6fcfc4d952dc4f7865e95d7a35 (patch)
tree66cf9689e93299be3fbc359ce2ba17ffee5f6f26 /src/include/janet.h
parentUpdate pretty printing default depth. (diff)
Sort keys initial.
Diffstat (limited to 'src/include/janet.h')
-rw-r--r--src/include/janet.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/janet.h b/src/include/janet.h
index a8efc545..4448a903 100644
--- a/src/include/janet.h
+++ b/src/include/janet.h
@@ -1630,6 +1630,7 @@ JANET_API Janet janet_wrap_number_safe(double x);
JANET_API int janet_keyeq(Janet x, const char *cstring);
JANET_API int janet_streq(Janet x, const char *cstring);
JANET_API int janet_symeq(Janet x, const char *cstring);
+JANET_API int32_t janet_sorted_keys(const JanetKV *dict, int32_t cap, int32_t *index_buffer);
/* VM functions */
JANET_API int janet_init(void);