Version 0 of Tcl_VarEval

Updated 2014-06-08 10:24:58 by dkf

Takes a varargs sequence of strings (terminated by NULL), concatenates them, and then evaluates the resulting string.

For example:

char *msg = "{Help me!}";
Tcl_VarEval(interp, "puts stderr", $msg, NULL);