9 lines
218 B
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)
|
|
};
|
|
}
|