aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_container_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-10-24 15:35:25 +0000
committerChristian Grothoff <christian@grothoff.org>2012-10-24 15:35:25 +0000
commitdd57878e27d53066bd63b2e03d495d627acc871d (patch)
treed9791a107e68c13b7f28763690021d244c1f837e /src/include/gnunet_container_lib.h
parent90fe9d740ea1be4f8c3f91534a196fd376d9cc9f (diff)
downloadgnunet-dd57878e27d53066bd63b2e03d495d627acc871d.tar.gz
gnunet-dd57878e27d53066bd63b2e03d495d627acc871d.zip
-doxygen
Diffstat (limited to 'src/include/gnunet_container_lib.h')
-rw-r--r--src/include/gnunet_container_lib.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index 2da177f16..80c0a78ee 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -839,6 +839,7 @@ GNUNET_CONTAINER_multihashmap_get_multiple (const struct
839 * Insert an element at the head of a MDLL. Assumes that head, tail and 839 * Insert an element at the head of a MDLL. Assumes that head, tail and
840 * element are structs with prev and next fields. 840 * element are structs with prev and next fields.
841 * 841 *
842 * @param mdll suffix name for the next and prev pointers in the element
842 * @param head pointer to the head of the MDLL 843 * @param head pointer to the head of the MDLL
843 * @param tail pointer to the tail of the MDLL 844 * @param tail pointer to the tail of the MDLL
844 * @param element element to insert 845 * @param element element to insert
@@ -859,6 +860,7 @@ GNUNET_CONTAINER_multihashmap_get_multiple (const struct
859 * Insert an element at the tail of a MDLL. Assumes that head, tail and 860 * Insert an element at the tail of a MDLL. Assumes that head, tail and
860 * element are structs with prev and next fields. 861 * element are structs with prev and next fields.
861 * 862 *
863 * @param mdll suffix name for the next and prev pointers in the element
862 * @param head pointer to the head of the MDLL 864 * @param head pointer to the head of the MDLL
863 * @param tail pointer to the tail of the MDLL 865 * @param tail pointer to the tail of the MDLL
864 * @param element element to insert 866 * @param element element to insert
@@ -879,6 +881,7 @@ GNUNET_CONTAINER_multihashmap_get_multiple (const struct
879 * Insert an element into a MDLL after the given other element. Insert 881 * Insert an element into a MDLL after the given other element. Insert
880 * at the head if the other element is NULL. 882 * at the head if the other element is NULL.
881 * 883 *
884 * @param mdll suffix name for the next and prev pointers in the element
882 * @param head pointer to the head of the MDLL 885 * @param head pointer to the head of the MDLL
883 * @param tail pointer to the tail of the MDLL 886 * @param tail pointer to the tail of the MDLL
884 * @param other prior element, NULL for insertion at head of MDLL 887 * @param other prior element, NULL for insertion at head of MDLL
@@ -908,6 +911,7 @@ GNUNET_CONTAINER_multihashmap_get_multiple (const struct
908 * Insert an element into a MDLL before the given other element. Insert 911 * Insert an element into a MDLL before the given other element. Insert
909 * at the tail if the other element is NULL. 912 * at the tail if the other element is NULL.
910 * 913 *
914 * @param mdll suffix name for the next and prev pointers in the element
911 * @param head pointer to the head of the MDLL 915 * @param head pointer to the head of the MDLL
912 * @param tail pointer to the tail of the MDLL 916 * @param tail pointer to the tail of the MDLL
913 * @param other prior element, NULL for insertion at head of MDLL 917 * @param other prior element, NULL for insertion at head of MDLL
@@ -938,6 +942,7 @@ GNUNET_CONTAINER_multihashmap_get_multiple (const struct
938 * that head, tail and element are structs 942 * that head, tail and element are structs
939 * with prev and next fields. 943 * with prev and next fields.
940 * 944 *
945 * @param mdll suffix name for the next and prev pointers in the element
941 * @param head pointer to the head of the MDLL 946 * @param head pointer to the head of the MDLL
942 * @param tail pointer to the tail of the MDLL 947 * @param tail pointer to the tail of the MDLL
943 * @param element element to remove 948 * @param element element to remove