From a33e3badad7fbfa7e229f009c5c1b78c552a935b Mon Sep 17 00:00:00 2001 From: "S. Christoffer Eliesen" Date: Wed, 18 Nov 2015 21:12:20 +0100 Subject: list: Add list_seq_find. Sometimes one has to traverse a list to find out if some data already exists there in order to avoid dupilcates in the list, and this function facilitates in that without requiring that the data is ordered. --- include/list.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') diff --git a/include/list.h b/include/list.h index aff6800f..90d0ad36 100644 --- a/include/list.h +++ b/include/list.h @@ -15,5 +15,8 @@ void list_del(list_t *list, int index); void list_cat(list_t *list, list_t *source); // See qsort void list_sort(list_t *list, int compare(const void *left, const void *right)); +// Return index for first item in list that returns 0 for given compare +// function or -1 if none matches. +int list_seq_find(list_t *list, int compare(const void *item, const void *cmp_to), const void *cmp_to); #endif -- cgit v1.2.3 From d0af224e6da2505601b9c068912903b3d32e37c6 Mon Sep 17 00:00:00 2001 From: "S. Christoffer Eliesen" Date: Thu, 19 Nov 2015 11:52:58 +0100 Subject: stringop: lenient_strcmp: Add. --- include/stringop.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') diff --git a/include/stringop.h b/include/stringop.h index febbbaba..bb681bcd 100644 --- a/include/stringop.h +++ b/include/stringop.h @@ -14,6 +14,9 @@ char *strip_whitespace(char *str); char *strip_comments(char *str); void strip_quotes(char *str); +// strcmp that also handles null pointers. +int lenient_strcmp(char *a, char *b); + // Simply split a string with delims, free with `free_flat_list` list_t *split_string(const char *str, const char *delims); void free_flat_list(list_t *list); -- cgit v1.2.3 From 5531dbe1b2026a88670c812d40f0efccb4b52c7f Mon Sep 17 00:00:00 2001 From: "S. Christoffer Eliesen" Date: Thu, 19 Nov 2015 13:05:59 +0100 Subject: cmd_workspace: Don't fill up config->workspace_outputs with duplicates. This also fixes a bug where issuing a new "workspace a output b" command for an already assigned workspace would not work (the old config would be found first and used instead). --- include/config.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/config.h b/include/config.h index c93f9caf..82aa71bf 100644 --- a/include/config.h +++ b/include/config.h @@ -102,6 +102,8 @@ char *do_var_replacement(char *str); void apply_output_config(struct output_config *oc, swayc_t *output); void free_output_config(struct output_config *oc); +int workspace_output_cmp_workspace(const void *a, const void *b); + /** * Global config singleton. */ -- cgit v1.2.3