From: Sebastian Hammer Date: Mon, 11 Dec 1995 15:22:12 +0000 (+0000) Subject: Added last_child field to the node. X-Git-Tag: YAZ.1.8~849 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=8986fb21c4b4a417de1817a73191b4b522c453d9;ds=sidebyside Added last_child field to the node. --- diff --git a/include/data1.h b/include/data1.h index f0d54b8..f803459 100644 --- a/include/data1.h +++ b/include/data1.h @@ -24,7 +24,10 @@ * OF THIS SOFTWARE. * * $Log: data1.h,v $ - * Revision 1.5 1995-12-05 14:26:40 quinn + * Revision 1.6 1995-12-11 15:22:12 quinn + * Added last_child field to the node. + * + * Revision 1.5 1995/12/05 14:26:40 quinn * Added global lbuf to data1_node. * * Revision 1.4 1995/11/13 09:27:29 quinn @@ -296,6 +299,7 @@ typedef struct data1_node int num_children; struct data1_node *next; struct data1_node *child; + struct data1_node *last_child; struct data1_node *parent; struct data1_node *root; } data1_node;