aboutsummaryrefslogtreecommitdiffstats
path: root/include/list.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-08-14 09:07:59 -0400
committerLibravatar GitHub <noreply@github.com>2018-08-14 09:07:59 -0400
commitb4887ba154ab0d659c560a21194c8ca43b953632 (patch)
treed1d693231ab91f1ef2fe98a437cc260daf755142 /include/list.h
parentMerge pull request #2454 from minus7/workspace-names (diff)
parentDon't commit multiple transactions at the same time (diff)
downloadsway-b4887ba154ab0d659c560a21194c8ca43b953632.tar.gz
sway-b4887ba154ab0d659c560a21194c8ca43b953632.tar.zst
sway-b4887ba154ab0d659c560a21194c8ca43b953632.zip
Merge pull request #2445 from RyanDwyer/resize-tiling-via-cursor
Implement resizing tiled containers via cursor
Diffstat (limited to 'include/list.h')
-rw-r--r--include/list.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/list.h b/include/list.h
index 5a0d7d80..7c0e4bd2 100644
--- a/include/list.h
+++ b/include/list.h
@@ -20,6 +20,7 @@ void list_qsort(list_t *list, int compare(const void *left, const void *right));
20// Return index for first item in list that returns 0 for given compare 20// Return index for first item in list that returns 0 for given compare
21// function or -1 if none matches. 21// function or -1 if none matches.
22int list_seq_find(list_t *list, int compare(const void *item, const void *cmp_to), const void *cmp_to); 22int list_seq_find(list_t *list, int compare(const void *item, const void *cmp_to), const void *cmp_to);
23int list_find(list_t *list, void *item);
23// stable sort since qsort is not guaranteed to be stable 24// stable sort since qsort is not guaranteed to be stable
24void list_stable_sort(list_t *list, int compare(const void *a, const void *b)); 25void list_stable_sort(list_t *list, int compare(const void *a, const void *b));
25// swap two elements in a list 26// swap two elements in a list