stringify

Return pointer to a string argument.


Synopsis

val = stringify(“somestring”)


Description

stringify returns a pointer to the string argument (“somestring”) suitable for storing in RTcmix variables.


Arguments


Examples

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!";

See Also

print, printf, type, len, Minc