Files
ground-rewrite/src/Bytecode/Heap/get.c

6 lines
149 B
C
Raw Normal View History

2026-06-21 14:35:48 +10:00
#include "../../../include/ground.h"
GroundValue* _GroundBytecodeHeapGet(GroundBytecodeHeap* heap, GroundSize idx) {
return &heap->heap[idx];
}