]> git.lizzy.rs Git - bspwm.git/blob - stack.h
Add example bindings for history navigation
[bspwm.git] / stack.h
1 #ifndef STACK_H
2 #define STACK_H
3
4 stacking_list_t *make_stack(node_t *n);
5 void stack_insert_after(stacking_list_t *a, node_t *n);
6 void stack_insert_before(stacking_list_t *a, node_t *n);
7 void remove_stack(stacking_list_t *s);
8 void remove_stack_node(node_t *n);
9 void stack(node_t *n);
10 void stack_under(node_t *n);
11
12 #endif