Return pointer to a string argument.
val = stringify(“somestring”)
stringify returns a pointer to the string argument (“somestring”) suitable for storing in RTcmix variables.
“somestring”
The string to be converted to an RTcmix pointer.
rtptr = stringify("hey there!")
Note: It is now unnecessary to use stringify to store string arguments in Minc. Simply assign the string to a variable:
var = "hey there!";