diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-07-11 04:38:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-11 04:38:46 -0700 |
commit | 00daa174463591efc44db8203298ddc30082547e (patch) | |
tree | c24efe7dbbc93098dd4c2273ebc2dc809c576901 /include | |
parent | 0f14abf5120db02ee80df4cc931e2abcd05af396 (diff) | |
parent | 15dc5286e280ddd06e845dc57115243e72f2339e (diff) |
Merge pull request #2242 from RyanDwyer/floating-zindex
Move floating windows to front when focused
Diffstat (limited to 'include')
-rw-r--r-- | include/list.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/list.h b/include/list.h index 7eead4ac..5a0d7d80 100644 --- a/include/list.h +++ b/include/list.h @@ -24,4 +24,6 @@ int list_seq_find(list_t *list, int compare(const void *item, const void *cmp_to void list_stable_sort(list_t *list, int compare(const void *a, const void *b)); // swap two elements in a list void list_swap(list_t *list, int src, int dest); +// move item to end of list +void list_move_to_end(list_t *list, void *item); #endif |