aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_container_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-04-23 10:47:47 +0000
committerChristian Grothoff <christian@grothoff.org>2014-04-23 10:47:47 +0000
commit21bac846638fbbbe2b03672295d4f14fc3ceb839 (patch)
treeedd9bc8a6bad2839014be46498a9cd9065ac2624 /src/include/gnunet_container_lib.h
parent2c9743fed0eb54a28cf376ef8fbb7a934990684c (diff)
downloadgnunet-21bac846638fbbbe2b03672295d4f14fc3ceb839.tar.gz
gnunet-21bac846638fbbbe2b03672295d4f14fc3ceb839.zip
-rename to conform with naming conventions
Diffstat (limited to 'src/include/gnunet_container_lib.h')
-rw-r--r--src/include/gnunet_container_lib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index 165643f60..a9c1f4b45 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -61,14 +61,14 @@ struct GNUNET_CONTAINER_BloomFilter;
61 61
62/** 62/**
63 * @ingroup bloomfilter 63 * @ingroup bloomfilter
64 * Iterator over struct GNUNET_HashCodes. 64 * Iterator over `struct GNUNET_HashCode`.
65 * 65 *
66 * @param cls closure 66 * @param cls closure
67 * @param next set to the next hash code 67 * @param next set to the next hash code
68 * @return #GNUNET_YES if next was updated 68 * @return #GNUNET_YES if next was updated
69 * #GNUNET_NO if there are no more entries 69 * #GNUNET_NO if there are no more entries
70 */ 70 */
71typedef int (*GNUNET_HashCodeIterator) (void *cls, 71typedef int (*GNUNET_CONTAINER_HashCodeIterator) (void *cls,
72 struct GNUNET_HashCode *next); 72 struct GNUNET_HashCode *next);
73 73
74 74
@@ -260,7 +260,7 @@ GNUNET_CONTAINER_bloomfilter_or2 (struct GNUNET_CONTAINER_BloomFilter *bf,
260 */ 260 */
261void 261void
262GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf, 262GNUNET_CONTAINER_bloomfilter_resize (struct GNUNET_CONTAINER_BloomFilter *bf,
263 GNUNET_HashCodeIterator iterator, 263 GNUNET_CONTAINER_HashCodeIterator iterator,
264 void *iterator_cls, size_t size, 264 void *iterator_cls, size_t size,
265 unsigned int k); 265 unsigned int k);
266 266