test
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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 */
|
||||
Reference in New Issue
Block a user