Re: What is a GNode?



On Fri, 16 Jun 2000, Richard Harvey Chapman wrote:

> I'm trying to find the declaration for GNode.  
> 
> Well, actually, I'm trying to figure out how to create/use a ctree.
> Documentation on it is a bit light.

Nevermind, I was able to find it using rgrep.  rgrep is such a wonderful
little program.

/* N-way tree implementation
 */
struct _GNode
{
  gpointer data;
  GNode   *next;
  GNode   *prev;
  GNode   *parent;
  GNode   *children;
};


R.






[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]