14 lines
312 B
C
14 lines
312 B
C
#ifndef __LINKEDLIST_H__
|
|
#define __LINKEDLIST_H__
|
|
|
|
|
|
typedef struct LinkedListEntry {
|
|
struct LinkedListEntry* prevEntry;
|
|
struct LinkedListEntry* nextEntry;
|
|
void* payload;
|
|
} LinkedListEntry;
|
|
|
|
void removeLinkedListEntry(LinkedListEntry** head, LinkedListEntry* entry);
|
|
|
|
#endif //ifndef __LINKEDLIST_H__
|