26 lines
No EOL
633 B
C
26 lines
No EOL
633 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "conf.h"
|
|
#include "screenManager.h"
|
|
#include "fileManager.h"
|
|
|
|
int main()
|
|
{
|
|
ptConf confChain = newConfChain();
|
|
ptListener listenerChain = newListenerChain();
|
|
|
|
readConfs(confChain);
|
|
menu(confChain, listenerChain);
|
|
saveConf(confChain);
|
|
saveListeners(listenerChain);
|
|
|
|
/*addConf(confChain, "test", "tesst", 21, 120, 2023);
|
|
addConf(confChain, "test", "tesst", 21, 120, 2023);
|
|
addConf(confChain, "test", "tesst", 21, 120, 2023);
|
|
|
|
addListener(listenerChain, "Roger", 19, 4);
|
|
addListener(listenerChain, "Roger", 19, 4);
|
|
addListener(listenerChain, "Roger", 19, 4);*/
|
|
|
|
return 0;
|
|
} |