gdjn  Artifact [7073b831fd]

Artifact 7073b831fd1e4665c44133d5c5f9643fd156abeed6436eb85ee9ab90fbe66fa2:


/* [ʞ] util-gn.h
 *  ~ lexi hale <lexi@hale.su>
 *  🄯 AGPLv3
 *  ? convenience functions for janet
 */

#pragma once
#include <janet.h>

static inline void
jnu_table_inherit(Janet tbl, Janet proto) {
	auto t = janet_unwrap_table(tbl);
	auto p = janet_unwrap_table(proto);
	t -> proto = p;
}

static inline JanetTable*
jnu_table_extend(JanetTable* p, size_t sz) {
	auto t = janet_table(sz);
	t -> proto = p;
	return t;
}