Files
ground-rewrite/src/New/Arg/ValueRef.c

10 lines
212 B
C
Raw Normal View History

2026-06-13 19:45:36 +10:00
#include "../../../include/ground.h"
2026-06-17 10:11:15 +10:00
GroundArg _GroundNewArgValueRef(GroundIdentifier* ref) {
2026-06-13 19:45:36 +10:00
return (GroundArg) {
.type = GroundArg_ValueRef,
2026-06-17 10:11:15 +10:00
.as.ref = Ground.Copy.Identifier(ref)
2026-06-13 19:45:36 +10:00
};
}