c-for-go icon indicating copy to clipboard operation
c-for-go copied to clipboard

define pointer to function

Open mopo3ilo opened this issue 2 years ago • 1 comments

[email protected]

tcl.h 8.6.12

/*
 * 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 ))

mopo3ilo avatar Nov 05 '22 01:11 mopo3ilo