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

9 lines
218 B
C

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