This commit is contained in:
2026-05-14 13:02:43 -05:00
parent 2265b8cf08
commit 3e47163ee5
6 changed files with 144 additions and 3 deletions

9
lib/code.c Normal file
View File

@@ -0,0 +1,9 @@
#include "priv.h"
Code* code_load_bytecode(uint8_t* bytecode, size_t bytecode_sz)
{
}
Code* code_load_bytecode_cb(void(*read_bytes)(size_t, void*), void* data)
{
}