mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
Added "layout promote" command.
This commit is contained in:
parent
a0aa8d9780
commit
1b87193c3d
3 changed files with 6 additions and 1 deletions
|
@ -22,4 +22,6 @@ void list_qsort(list_t *list, int compare(const void *left, const void *right));
|
|||
int list_seq_find(list_t *list, int compare(const void *item, const void *cmp_to), const void *cmp_to);
|
||||
// stable sort since qsort is not guaranteed to be stable
|
||||
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);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue