aboutsummaryrefslogtreecommitdiff
path: root/src/sllist.h
blob: 4029f16a0b4744f2dfe4d20ed0b286c7ec420ac8 (plain)
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
26
27
28
29
30
31
32
33
34
/* a very simple singly-linked-list structure for queues/buffers */

#ifndef SLLIST_H
#define SLLIST_H

#include <stddef.h>

/* just free the entire structure if it's free-able, the 'data' member
 * should _NEVER_ be explicitly freed
 *
 * there's no free command, iterate through them yourself and just
 * call free() on it iff you malloc'd them */

struct strnode {
	struct strnode *next;
	char *data;
};

struct sllnode {
	struct sllnode *next;
	void *data;
	size_t size;
};

struct strnode *new_strnode(char *s);

struct strnode *new_strnode_dup(char *s, const size_t size);

struct strnode *dup_strlist(struct strnode *old);

struct sllnode *new_sllnode(void *s, const size_t size);


#endif /* SLLIST_H */