NAMETcl_CreateMathFunc, Tcl_GetMathFuncInfo, Tcl_ListMathFuncs − Define, query and enumerate math functions for expressions NOTICE OF EVENTUAL DEPRECATIONThe Tcl_CreateMathFunc and Tcl_GetMathFuncInfo functions are rendered somewhat obsolete by the ability to create functions for expressions by placing commands in the tcl::mathfunc namespace, as described in the mathfunc manual page; the API described on this page is not expected to be maintained indefinitely. SYNOPSIS#include <tcl.h>void
Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData)int
Tcl_GetMathFuncInfo(interp, name, numArgsPtr, argTypesPtr, procPtr,
clientDataPtr)Tcl_Obj *
Tcl_ListMathFuncs(interp, pattern)ARGUMENTS
. el .TP 15
Tcl_Interp *interp(in) Interpreter in which new function will be defined.