This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-03-30 10:57:41 +02:00

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 */