unicorn/include/list.h

37 lines
806 B
C
Raw Permalink Normal View History

#ifndef UC_LLIST_H
#define UC_LLIST_H
2017-01-20 16:13:21 +03:00
#include "unicorn/platform.h"
2022-02-12 18:28:43 +03:00
typedef void (*delete_fn)(void *data);
struct list_item {
struct list_item *next;
void *data;
};
struct list {
struct list_item *head, *tail;
2022-02-12 18:28:43 +03:00
delete_fn delete_fn;
};
// create a new list
struct list *list_new(void);
// removed linked list nodes but does not free their content
void list_clear(struct list *list);
// insert a new item at the begin of the list.
void *list_insert(struct list *list, void *data);
// append a new item at the end of the list.
void *list_append(struct list *list, void *data);
// returns true if entry was removed, false otherwise
bool list_remove(struct list *list, void *data);
// returns true if the data exists in the list
bool list_exists(struct list *list, void *data);
#endif