#include <tcl_utils.h>
void vTcl_SetResult(Tcl_Interp *interp, char *fmt, ...);
This function is a varargs implementation of the standard Tcl_SetResult
function. The Tcl result is set to be the string specified by the fmt
and subsequent arguments in the standard sprintf
style.
NOTE: The current implementation has a limit of setting up to 8192 bytes.