]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/binheap-node.h
Table: renamed table_col_order[_by_name] -> table_set_col_order[_by_name]
[libucw.git] / ucw / binheap-node.h
index 44be9f4e656ab297cf4f8de8b3a9838cdff5f37b..c0cb16bc411d81577559b3ba9f25453c65954b64 100644 (file)
@@ -7,6 +7,18 @@
  *     of the GNU Lesser General Public License.
  */
 
+#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;
@@ -14,6 +26,11 @@ struct bh_node {
   byte order;
 };
 
+/**
+ * A binomial heap.
+ **/
 struct bh_heap {
   struct bh_node root;
 };
+
+#endif