summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/config.h2
-rw-r--r--include/list.h3
-rw-r--r--include/stringop.h3
3 files changed, 8 insertions, 0 deletions
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);
102void apply_output_config(struct output_config *oc, swayc_t *output); 102void apply_output_config(struct output_config *oc, swayc_t *output);
103void free_output_config(struct output_config *oc); 103void free_output_config(struct output_config *oc);
104 104
105int workspace_output_cmp_workspace(const void *a, const void *b);
106
105/** 107/**
106 * Global config singleton. 108 * Global config singleton.
107 */ 109 */
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);
15void list_cat(list_t *list, list_t *source); 15void list_cat(list_t *list, list_t *source);
16// See qsort 16// See qsort
17void list_sort(list_t *list, int compare(const void *left, const void *right)); 17void list_sort(list_t *list, int compare(const void *left, const void *right));
18// Return index for first item in list that returns 0 for given compare
19// function or -1 if none matches.
20int list_seq_find(list_t *list, int compare(const void *item, const void *cmp_to), const void *cmp_to);
18 21
19#endif 22#endif
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);
14char *strip_comments(char *str); 14char *strip_comments(char *str);
15void strip_quotes(char *str); 15void strip_quotes(char *str);
16 16
17// strcmp that also handles null pointers.
18int lenient_strcmp(char *a, char *b);
19
17// Simply split a string with delims, free with `free_flat_list` 20// Simply split a string with delims, free with `free_flat_list`
18list_t *split_string(const char *str, const char *delims); 21list_t *split_string(const char *str, const char *delims);
19void free_flat_list(list_t *list); 22void free_flat_list(list_t *list);