diff options
Diffstat (limited to 'sway/list.h')
-rw-r--r-- | sway/list.h | 16 |
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 @@ +#ifndef _SWAY_LIST_H +#define _SWAY_LIST_H + +typedef struct { + int capacity; + int length; + void **items; +} list_t; + +list_t *create_list(); +void list_free(list_t *list); +void list_add(list_t *list, void *item); +void list_del(list_t *list, int index); +void list_cat(list_t *list, list_t *source); + +#endif |