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

10 lines
212 B
C

#include "../../../include/ground.h"
GroundArg _GroundNewArgValueRef(GroundIdentifier* ref) {
return (GroundArg) {
.type = GroundArg_ValueRef,
.as.ref = Ground.Copy.Identifier(ref)
};
}