aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-01-06 03:16:06 +0000
committerNick Mathewson <nickm@torproject.org>2008-01-06 03:16:06 +0000
commit864d83059823bbd89c94dcff258f99977b17bcd6 (patch)
tree02220573a1b84ba8f30fca4f6df434c47f84f4c4 /src/common
parent5aa7ce2915563d7db290e37edbf2527f620f486c (diff)
downloadtor-864d83059823bbd89c94dcff258f99977b17bcd6.tar
tor-864d83059823bbd89c94dcff258f99977b17bcd6.tar.gz
r17471@catbus: nickm | 2008-01-05 21:47:08 -0500
Missing documentation in container.h svn:r13038
Diffstat (limited to 'src/common')
-rw-r--r--src/common/container.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/container.h b/src/common/container.h
index ce1f3d416..f8660c74d 100644
--- a/src/common/container.h
+++ b/src/common/container.h
@@ -203,7 +203,9 @@ char *smartlist_join_strings2(smartlist_t *sl, const char *join,
/* Map from const char * to void *. Implemented with a hash table. */
DECLARE_MAP_FNS(strmap_t, const char *, strmap_);
+/* Map from const char[DIGEST_LEN] to void *. Implemented with a hash table. */
DECLARE_MAP_FNS(digestmap_t, const char *, digestmap_);
+
#undef DECLARE_MAP_FNS
void* strmap_set_lc(strmap_t *map, const char *key, void *val);