Initial commit

This commit is contained in:
theoleuthardt 2024-01-27 02:07:15 +01:00
commit 826d4c8c9d
81 changed files with 7268 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#ifndef EXAMTEMPLATE_LIST_H
#define EXAMTEMPLATE_LIST_H
struct list{
void *data;
struct list *ptr;
};
void Add(void *data);
void *Get(int index);
int Size();
int Contains(void *item);
void Remove(int index);
#endif //EXAMTEMPLATE_LIST_H