Use new github account
[oggfilter.git] / list.h
blob7222b62650fc03f9b53ccbfc51913dd7aae41a70
1 /*-
2 * "THE BEER-WARE LICENSE" (Revision 42):
3 * <tobias.rehbein@web.de> wrote this file. As long as you retain this notice
4 * you can do whatever you want with this stuff. If we meet some day, and you
5 * think this stuff is worth it, you can buy me a beer in return.
6 * Tobias Rehbein
7 */
9 /**
10 * Required includes:
12 * list.h
15 struct element {
16 void *payload;
17 struct element *next;
20 struct element *create_element(void *_payload);
21 struct element *destroy_element(struct element *_element);
22 struct element *prepend_element(struct element *_new, struct element *_list);