timesynk/common/llist.h

12 lines
168 B
C

#ifndef LLIST_H
#define LLIST_H
struct LList {
int size;
struct LList *next;
void *data;
};
struct LList *newLList();
int freeLList(struct LList *llist);
#endif