Files
ground-rewrite/src/Free/Arg.c

10 lines
218 B
C
Raw Normal View History

2026-06-16 20:01:42 +10:00
#include "../../include/ground.h"
void _GroundFreeArg(GroundArg* in) {
if (in->type == GroundArg_Value) {
Ground.Free.Value(&in->as.value);
} else {
2026-06-17 10:11:15 +10:00
Ground.Free.Identifier(in->as.ref);
2026-06-16 20:01:42 +10:00
}
}