X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fbinheap-node.h;h=c0cb16bc411d81577559b3ba9f25453c65954b64;hb=634be141f3f014e31d5931a968c0c0f7e07205fb;hp=afbda63bc0098117965cc7aa2ca6c286af4dc01e;hpb=ad920945145a18895ef391511c92ef42e0e4c3d7;p=libucw.git diff --git a/ucw/binheap-node.h b/ucw/binheap-node.h index afbda63b..c0cb16bc 100644 --- a/ucw/binheap-node.h +++ b/ucw/binheap-node.h @@ -10,6 +10,15 @@ #ifndef _UCW_BINHEAP_NODE_H #define _UCW_BINHEAP_NODE_H +/*** + * [[common]] + * Common definitions + * ------------------ + ***/ + +/** + * Common header of binomial heap nodes. + **/ struct bh_node { struct bh_node *first_son; struct bh_node *last_son; @@ -17,6 +26,9 @@ struct bh_node { byte order; }; +/** + * A binomial heap. + **/ struct bh_heap { struct bh_node root; };