#ifndef CRASHPOWEROS_LIST_H #define CRASHPOWEROS_LIST_H #include #include 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