diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-08-11 07:17:16 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-08-11 07:17:16 +0000 |
commit | 42a5d7a4ba0c3c70d77efcbd1146f498a5a571d0 (patch) | |
tree | e4f251757477553472cb9c326a08db5c33ffb827 /src/common | |
parent | 9b5a643475987c41a4b7340910521d07dde95926 (diff) | |
download | tor-42a5d7a4ba0c3c70d77efcbd1146f498a5a571d0.tar.gz tor-42a5d7a4ba0c3c70d77efcbd1146f498a5a571d0.zip |
r7335@Kushana: nickm | 2006-08-11 00:13:03 -0700
fix wide lines
svn:r7025
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/container.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/container.h b/src/common/container.h index 6e266feadb..a4cac610d7 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -33,9 +33,11 @@ void *smartlist_pop_last(smartlist_t *sl); void smartlist_reverse(smartlist_t *sl); void smartlist_string_remove(smartlist_t *sl, const char *element); int smartlist_isin(const smartlist_t *sl, const void *element) ATTR_PURE; -int smartlist_string_isin(const smartlist_t *sl, const char *element) ATTR_PURE; +int smartlist_string_isin(const smartlist_t *sl, const char *element) + ATTR_PURE; int smartlist_string_num_isin(const smartlist_t *sl, int num) ATTR_PURE; -int smartlist_overlap(const smartlist_t *sl1, const smartlist_t *sl2) ATTR_PURE; +int smartlist_overlap(const smartlist_t *sl1, const smartlist_t *sl2) + ATTR_PURE; void smartlist_intersect(smartlist_t *sl1, const smartlist_t *sl2); void smartlist_subtract(smartlist_t *sl1, const smartlist_t *sl2); |