mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-11-15 19:47:57 +01:00
17 lines
310 B
C
17 lines
310 B
C
|
#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
|