10 lines
165 B
C
10 lines
165 B
C
#pragma once
|
|
|
|
struct list {
|
|
void *content;
|
|
struct list *next;
|
|
};
|
|
|
|
struct list *lst_last(struct list *head);
|
|
void lst_add_back(struct list **head, struct list *e);
|