aboutsummaryrefslogtreecommitdiffstats
path: root/sway/list.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-08-04 21:30:40 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-08-04 21:30:40 -0400
commit542ef0c77700e67a95fcd08b5f305d1ab42046e1 (patch)
tree17333ebc1a65a28b9538de2da9264a45fc0cf9a9 /sway/list.h
parentInitial commit (diff)
downloadsway-542ef0c77700e67a95fcd08b5f305d1ab42046e1.tar.gz
sway-542ef0c77700e67a95fcd08b5f305d1ab42046e1.tar.zst
sway-542ef0c77700e67a95fcd08b5f305d1ab42046e1.zip
Pull in some scas code and read i3 config file
Diffstat (limited to 'sway/list.h')
-rw-r--r--sway/list.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/sway/list.h b/sway/list.h
new file mode 100644
index 00000000..2f60b0df
--- /dev/null
+++ b/sway/list.h
@@ -0,0 +1,16 @@
1#ifndef _SWAY_LIST_H
2#define _SWAY_LIST_H
3
4typedef struct {
5 int capacity;
6 int length;
7 void **items;
8} list_t;
9
10list_t *create_list();
11void list_free(list_t *list);
12void list_add(list_t *list, void *item);
13void list_del(list_t *list, int index);
14void list_cat(list_t *list, list_t *source);
15
16#endif