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.



_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to