mirror of
https://github.com/theoleuthardt/learningC.git
synced 2026-06-13 09:37:53 +00:00
Initial commit
This commit is contained in:
commit
826d4c8c9d
81 changed files with 7268 additions and 0 deletions
11
uebung7/uebung7_modules/list.h
Normal file
11
uebung7/uebung7_modules/list.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue