10 lines
212 B
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)
|
|
};
|
|
}
|
|
|