summaryrefslogtreecommitdiffstats
path: root/lib/stringlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stringlist.c')
-rw-r--r--lib/stringlist.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/stringlist.c b/lib/stringlist.c
index 8e92c1b207..719fecdaa4 100644
--- a/lib/stringlist.c
+++ b/lib/stringlist.c
@@ -60,6 +60,29 @@ int string_list_add_sorted(struct string_list *sl, const char *str)
return 0;
}
+int string_list_add_sort_uniq(struct string_list *sl, const char *str)
+{
+ struct string_list *new, *entry = sl;
+
+ string_list_for_each_entry(entry, sl) {
+ int cmp = strcmp(entry->str, str);
+
+ if (cmp < 0)
+ continue;
+ if (cmp == 0)
+ return 0;
+
+ break;
+ }
+
+ new = xmalloc(sizeof(*new));
+ new->str = xstrdup(str);
+
+ list_add_tail(&new->list, &entry->list);
+
+ return 0;
+}
+
int string_list_contains(struct string_list *sl, const char *str)
{
struct string_list *entry;