GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Blt_TreeExists(3) BLT Library Procedures Blt_TreeExists(3)


Blt_TreeExists - Indicates if a tree exists.

#include <bltTree.h>

int 
Blt_TreeExists(interp, name)

Tcl_Interp *interp (in)
Interpreter to determine current namespace context.
const char *name (in)
Name of an existing tree data object. Can be qualified by a namespace.

    

This procedure determines if a C-based tree data object exists by a given name. The arguments are as follows:
interp
Used the determine the current namespace context.
name
Name of an existing tree data object. Name can be qualified by a namespace such as fred::myTree. If no namespace qualifier is used, the current namespace is searched, then the global namespace.

A boolean result is returned. If the tree exists 1 is returned, 0 otherwise.

The following example checks if a tree "myTree" exists.

if (!Blt_TreeExists(interp, "myTree")) {
    fprintf(stderr, "can't find tree \"myTree\\n");
}

tree, token Tcl_TreeCreate, Tcl_TreeGetToken, Tcl_TreeReleaseToken
2.5 BLT

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.