mirror of
https://github.com/theoleuthardt/learningC.git
synced 2026-06-13 09:37:53 +00:00
11 lines
169 B
C
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
|