]> mj.ucw.cz Git - libucw.git/blob - lib/binheap-node.h
bugfix in image scaling (select the correct strategy)
[libucw.git] / lib / binheap-node.h
1 /*
2  *      UCW Library -- Binomial Heaps: Declarations
3  *
4  *      (c) 2003 Martin Mares <mj@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 struct bh_node {
11   struct bh_node *first_son;
12   struct bh_node *last_son;
13   struct bh_node *next_sibling;
14   byte order;
15 };
16
17 struct bh_heap {
18   struct bh_node root;
19 };