46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/*
|
|
* This software is licensed under the terms of the MIT-License
|
|
* See COPYING for further information.
|
|
* ---
|
|
* Copyright (c) 2011-2017, Lukas Weber <laochailan@web.de>.
|
|
* Copyright (c) 2012-2017, Andrei Alexeyev <akari@alienslab.net>.
|
|
*/
|
|
|
|
#ifndef LIST_H
|
|
#define LIST_H
|
|
|
|
/* I got annoyed of the code doubling caused by simple linked lists,
|
|
* so i do some void-magic here to save the lines.
|
|
*/
|
|
|
|
void *create_element(void **dest, int size);
|
|
void delete_element(void **dest, void *e);
|
|
void delete_all_elements(void **dest, void (callback)(void **, void *));
|
|
void delete_all_elements_witharg(void **dest, void (callback)(void **, void *, void *), void *arg);
|
|
|
|
typedef struct ListContainer {
|
|
void *next;
|
|
void *prev;
|
|
void *data;
|
|
} ListContainer;
|
|
|
|
ListContainer* create_container(ListContainer **dest);
|
|
|
|
typedef struct {
|
|
void *ptr;
|
|
int refs;
|
|
} Reference;
|
|
|
|
typedef struct {
|
|
Reference *ptrs;
|
|
int count;
|
|
} RefArray;
|
|
|
|
extern void *_FREEREF;
|
|
#define FREEREF &_FREEREF
|
|
#define REF(p) (global.refs.ptrs[(int)(p)].ptr)
|
|
int add_ref(void *ptr);
|
|
void del_ref(void *ptr);
|
|
void free_ref(int i);
|
|
void free_all_refs(void);
|
|
#endif
|