]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/binheap-node.h
Merge remote-tracking branch 'origin/master'
[libucw.git] / ucw / binheap-node.h
index afbda63bc0098117965cc7aa2ca6c286af4dc01e..c0cb16bc411d81577559b3ba9f25453c65954b64 100644 (file)
 #ifndef _UCW_BINHEAP_NODE_H
 #define _UCW_BINHEAP_NODE_H
 
 #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;
 struct bh_node {
   struct bh_node *first_son;
   struct bh_node *last_son;
@@ -17,6 +26,9 @@ struct bh_node {
   byte order;
 };
 
   byte order;
 };
 
+/**
+ * A binomial heap.
+ **/
 struct bh_heap {
   struct bh_node root;
 };
 struct bh_heap {
   struct bh_node root;
 };