-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.h
34 lines (27 loc) · 1.02 KB
/
list.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* evilwm - minimalist window manager for X11
* Copyright (C) 1999-2022 Ciaran Anscomb <[email protected]>
* see README for license and other details. */
// Basic linked list handling code. Operations that modify the list
// return the new list head.
#ifndef EVILWM_LIST_H__
#define EVILWM_LIST_H__
// Each list element is of this deliberately transparent type:
struct list {
struct list *next;
void *data;
};
struct list_meta {
struct list *head;
struct list *tail;
};
// Each of these return the new pointer to the head of the list:
struct list *list_prepend(struct list *list, void *data);
struct list *list_append(struct list *list, void *data);
struct list *list_delete(struct list *list, void *data);
struct list *list_to_head(struct list *list, void *data);
struct list *list_to_tail(struct list *list, void *data);
struct list *list_reverse(struct list *list, void *);
// Returns element in list:
struct list *list_find(struct list *list, void *data);
struct list *list_find_prev(struct list *list, void *data);
#endif