logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Blt_TreeName - Returns the name of the tree data object.

Arguments

Blt_Tree tree (in) Token for the tree object. _________________________________________________________________

Description

This procedure returns the name of the C-based tree data object. The arguments are as follows: tree Token for the tree object. The token must have been previously obtained via Blt_TreeGetToken or Blt_TreeCreate.

Example

The following example prints the name of the new tree. Blt_Tree token; if (Blt_TreeCreate(interp, NULL, &token) != TCL_OK) { return TCL_ERROR; } printf("tree is %s\n", Blt_TreeName(token));

Keywords

Tcl_TreeGetToken, Tcl_TreeExists, Tcl_TreeReleaseToken BLT 2.5 Blt_TreeName(3)

Name

Blt_TreeName - Returns the name of the tree data object.

Returns

The name of the tree object is returned. The name will be fully qualified with a namespace context.

Synopsis

#include<bltTree.h> char * Blt_TreeName(tree)

See Also