18 lines
212 B
C
18 lines
212 B
C
#ifndef LISTS_H
|
|
#define LISTS_H
|
|
|
|
#include <stddef.h>
|
|
|
|
struct list {
|
|
struct list *next;
|
|
int data;
|
|
};
|
|
|
|
struct dlist {
|
|
struct dlist *next;
|
|
struct dlist *prev;
|
|
int data;
|
|
};
|
|
|
|
#endif /* !LISTS_H */
|