CoolPotOS/include/list.h

25 lines
415 B
C

#ifndef CRASHPOWEROS_LIST_H
#define CRASHPOWEROS_LIST_H
#include <stdint.h>
#include <stddef.h>
struct ListCtl {
struct List *start;
struct List *end;
int all;
};
struct List {
struct ListCtl *ctl;
struct List *prev;
uintptr_t val;
struct List *next;
};
typedef struct List List;
struct List* FindForCount(size_t count, struct List* Obj);
int GetLastCount(struct List* Obj);
#endif