mirror of
https://github.com/swaywm/sway.git
synced 2025-10-29 05:40:18 -04:00
Move headers to include/
This commit is contained in:
parent
360b3d67b0
commit
7f8ebb7d0d
12 changed files with 1 additions and 1 deletions
17
include/list.h
Normal file
17
include/list.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef _SWAY_LIST_H
|
||||
#define _SWAY_LIST_H
|
||||
|
||||
typedef struct {
|
||||
int capacity;
|
||||
int length;
|
||||
void **items;
|
||||
} list_t;
|
||||
|
||||
list_t *create_list(void);
|
||||
void list_free(list_t *list);
|
||||
void list_add(list_t *list, void *item);
|
||||
void list_insert(list_t *list, int index, void *item);
|
||||
void list_del(list_t *list, int index);
|
||||
void list_cat(list_t *list, list_t *source);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue