23 lines
256 B
C
23 lines
256 B
C
|
|
#ifndef STRUCT_LINKED_LIST
|
|
#define STRUCT_LINKED_LIST
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct linked_list
|
|
{
|
|
struct value* head;
|
|
|
|
struct value* tail;
|
|
};
|
|
|
|
struct link
|
|
{
|
|
bool in_set;
|
|
|
|
struct value* prev;
|
|
|
|
struct value* next;
|
|
};
|
|
|
|
#endif
|