learningC/uebung7/uebung7_modules/list.h
2024-01-27 02:07:15 +01:00

11 lines
169 B
C

#ifndef LIST_H
#define LIST_H
int isEmpty();
void Add(void *data);
void *Get(int index);
int Size();
int Contains(void *item);
void Remove(int index);
#endif //LIST_H