initial doxy patch for rbtree from vtorri
authordiscomfitor <discomfitor@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 12 Sep 2010 19:28:18 +0000 (19:28 +0000)
committerdiscomfitor <discomfitor@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 12 Sep 2010 19:28:18 +0000 (19:28 +0000)
CEDRIC WRITE DOCS FOR THIS!

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@52172 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/include/eina_inline_rbtree.x
src/lib/eina_rbtree.c

index d5ae043..954774b 100644 (file)
 #ifndef EINA_RBTREE_INLINE_H_
 #define EINA_RBTREE_INLINE_H_
 
+/**
+ * @addtogroup Eina_Rbtree_Group Red-Black tree
+ *
+ * @brief These functions provide Red-Black trees management.
+ *
+ * @{
+ */
+
 static inline Eina_Rbtree *
 eina_rbtree_inline_lookup(const Eina_Rbtree *root, const void *key, int length, Eina_Rbtree_Cmp_Key_Cb cmp, const void *data)
 {
@@ -35,4 +43,8 @@ eina_rbtree_inline_lookup(const Eina_Rbtree *root, const void *key, int length,
    return NULL;
 }
 
+/**
+ * @}
+ */
+
 #endif
index a919ba4..1f03308 100644 (file)
@@ -276,6 +276,14 @@ _eina_rbtree_inline_double_rotation(Eina_Rbtree *node,
 *                                   API                                      *
 *============================================================================*/
 
+/**
+ * @addtogroup Eina_Rbtree_Group Red-Black tree
+ *
+ * @brief These functions provide Red-Black trees management.
+ *
+ * @{
+ */
+
 EAPI Eina_Rbtree *
 eina_rbtree_inline_insert(Eina_Rbtree *root,
                           Eina_Rbtree *node,
@@ -578,3 +586,7 @@ eina_rbtree_delete(Eina_Rbtree *root, Eina_Rbtree_Free_Cb func, void *data)
    eina_rbtree_delete(root->son[1], func, data);
    func(root, data);
 }
+
+/**
+ * @}
+ */