blob: 0a5c6c0a78ba7c5b7cb59a2796016ff1df841a03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef LIST_H
#define LIST_H
#include <def.h>
struct list {
struct node *head;
};
struct node {
void *data;
int nonce;
struct node *next;
struct node *prev;
};
struct list *list_new();
/* struct node *list_new_node(); */ // TODO: Make node-specific things static/private?
/* void list_add_node(struct list *list, struct node *node); */
struct node *list_add(struct list *list, void *data);
void list_remove(struct list *list, struct node *node);
#endif
|