ws server +proto
This commit is contained in:
13
inc/linkedlist.h
Normal file
13
inc/linkedlist.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user