Artifact 7073b831fd1e4665c44133d5c5f9643fd156abeed6436eb85ee9ab90fbe66fa2:
- File src/util-jn.h — part of check-in [91e02e35d5] at 2025-02-21 22:02:29 on branch trunk — add janet API bootstrapping infra (prim, core), begin building executor (vm.c), design class model, continue working on loading, add script instances, tidy up src organization, build janet to use godot malloc/free (user: lexi, size: 424) [annotate] [blame] [check-ins using]
/* [ʞ] 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; }