2 * UCW Library -- Binomial Heaps: Declarations
4 * (c) 2003 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
10 #ifndef _UCW_BINHEAP_NODE_H
11 #define _UCW_BINHEAP_NODE_H
20 * Common header of binomial heap nodes.
23 struct bh_node *first_son;
24 struct bh_node *last_son;
25 struct bh_node *next_sibling;