Files
ground-rewrite/src/Bytecode/Heap/get.c
2026-06-21 14:35:48 +10:00

6 lines
149 B
C

#include "../../../include/ground.h"
GroundValue* _GroundBytecodeHeapGet(GroundBytecodeHeap* heap, GroundSize idx) {
return &heap->heap[idx];
}