#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__