/*
* Special freeProc values that may be passed to Tcl_SetResult (see the man
* page for details):
*/
#define TCL_VOLATILE ((Tcl_FreeProc *) 1)
#define TCL_STATIC ((Tcl_FreeProc *) 0)
#define TCL_DYNAMIC ((Tcl_FreeProc *) 3)
result
// Volatile as defined in include/tcl.h:1085
Volatile = ( ( FreeProc * )( 1 ))
// Static as defined in include/tcl.h:1086
Static = ( ( FreeProc * )( 0 ))
// Dynamic as defined in include/tcl.h:1087
Dynamic = ( ( FreeProc * )( 3 ))
c-for-go@v0.0.0-20221031195837-eaf8c81cbbe7
tcl.h 8.6.12
result