diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-12-28 21:29:03 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-12-28 21:29:03 +0000 |
commit | 4cd302a1ebd44eafe5ac57062288436ab41b1220 (patch) | |
tree | 67d580a3df417b0a0878482fdb02c5b344874500 /src/common | |
parent | e631b0a56f8958d104d3c74fa4b17dfbfacd6d6e (diff) | |
download | tor-4cd302a1ebd44eafe5ac57062288436ab41b1220.tar.gz tor-4cd302a1ebd44eafe5ac57062288436ab41b1220.zip |
r11722@Kushana: nickm | 2006-12-28 13:51:42 -0500
Add a helper function for case-insensitive search through a smartlist
svn:r9198
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/container.c | 14 | ||||
-rw-r--r-- | src/common/container.h | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/common/container.c b/src/common/container.c index 6dae0bb932..659e1346d1 100644 --- a/src/common/container.c +++ b/src/common/container.c @@ -197,6 +197,20 @@ smartlist_string_isin(const smartlist_t *sl, const char *element) return 0; } +/** Return true iff <b>sl</b> has some element E such that + * !strcasecmp(E,<b>element</b>) + */ +int +smartlist_string_isin_case(const smartlist_t *sl, const char *element) +{ + int i; + if (!sl) return 0; + for (i=0; i < sl->num_used; i++) + if (strcasecmp((const char*)sl->list[i],element)==0) + return 1; + return 0; +} + /** Return true iff <b>sl</b> has some element E such that E is equal * to the decimal encoding of <b>num</b>. */ diff --git a/src/common/container.h b/src/common/container.h index 5f0417cf4d..a6b7b56adb 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -35,6 +35,8 @@ 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_case(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; |