forked from ground/cground
Call functions
This commit is contained in:
@@ -51,6 +51,12 @@ GroundValue createFunctionGroundValue(GroundFunction* in) {
|
||||
return gv;
|
||||
}
|
||||
|
||||
GroundValue createNoneGroundValue() {
|
||||
GroundValue gv;
|
||||
gv.type = NONE;
|
||||
return gv;
|
||||
}
|
||||
|
||||
GroundValue copyGroundValue(const GroundValue* gv) {
|
||||
GroundValue newGv;
|
||||
newGv.type = gv->type;
|
||||
|
||||
Reference in New Issue
Block a user