diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-04-03 05:52:32 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-04-03 05:52:32 +0000 |
commit | ff545c3103c55b02b1239465b78033d6b937eda5 (patch) | |
tree | 9b340be3b3ef8bf5ed3604aa89248c4b704cbf44 /src/common/container.h | |
parent | 11d20d78a03f0befee32c17d50f9e5d294908689 (diff) | |
download | tor-ff545c3103c55b02b1239465b78033d6b937eda5.tar.gz tor-ff545c3103c55b02b1239465b78033d6b937eda5.zip |
Add useful smartlist_string_remove function.
svn:r3996
Diffstat (limited to 'src/common/container.h')
-rw-r--r-- | src/common/container.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/container.h b/src/common/container.h index f003c03d5a..60a13c5965 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -30,6 +30,7 @@ void smartlist_truncate(smartlist_t *sl, int n); void smartlist_add(smartlist_t *sl, void *element); void smartlist_add_all(smartlist_t *sl, const smartlist_t *s2); void smartlist_remove(smartlist_t *sl, void *element); +void smartlist_string_remove(smartlist_t *sl, const char *element); int smartlist_isin(const smartlist_t *sl, void *element); int smartlist_string_isin(const smartlist_t *sl, const char *element); int smartlist_string_num_isin(const smartlist_t *sl, int num); |