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

9 lines
218 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 _GroundNewArgFunctionRef(GroundIdentifier* ref) {
2026-06-13 19:45:36 +10:00
return (GroundArg) {
.type = GroundArg_FunctionRef,
2026-06-17 10:11:15 +10:00
.as.ref = Ground.Copy.Identifier(ref)
2026-06-13 19:45:36 +10:00
};
}