diff options
Diffstat (limited to 'src/common/container.c')
-rw-r--r-- | src/common/container.c | 14 |
1 files changed, 14 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>. */ |