This commit is contained in:
Lukian 2023-11-20 18:53:08 +01:00
parent 3e73277764
commit 50efd5be5a
6 changed files with 90 additions and 19 deletions

2
conf.h
View file

@ -42,8 +42,10 @@ typedef tListenerList* ptListenerList;
int findConfId(ptConf confChain);
ptConf newConfChain();
void addConf(ptConf confChain, int id, char title[], char speaker[], int day, int month, int year);
void removeConf(ptConf confChain, int id);
int findListenerId(ptListener listenerChain);
ptListener newListenerChain();
void addListener(ptListener listenerChain, int id, char name[], int age, int level);
void removeListener(ptListener listenerChain, int id);
#endif // CONF_H