This commit is contained in:
Lukian 2023-11-20 17:48:40 +01:00
parent 0c6cf142a4
commit 370856ec3d
9 changed files with 68 additions and 42 deletions

6
conf.h
View file

@ -39,9 +39,11 @@ typedef tListener* ptListener;
typedef tConfList* ptConfList;
typedef tListenerList* ptListenerList;
int findConfId(ptConf confChain);
ptConf newConfChain();
void addConf(ptConf confChainStart, char title[], char speaker[], int day, int month, int year);
void addConf(ptConf confChain, int id, char title[], char speaker[], int day, int month, int year);
int findListenerId(ptListener listenerChain);
ptListener newListenerChain();
void addListener(ptListener listenerChain, char name[], int age, int level);
void addListener(ptListener listenerChain, int id, char name[], int age, int level);
#endif // CONF_H