This commit is contained in:
Lukian LEIZOUR 2023-11-20 10:24:31 +01:00
parent 50ea8f2735
commit aa5045a797
4 changed files with 41 additions and 10 deletions

8
main.c
View file

@ -5,7 +5,7 @@
int main()
{
/*ptConf confChain = newConfChain();
ptConf confChain = newConfChain();
ptListener listenerChain = newListenerChain();
addConf(confChain, "test", "tesst", 21, 120, 2023);
@ -26,9 +26,9 @@ int main()
while (py -> next != NULL) {
printf("name: %s\nage: %d\nlevel: %d", py -> name, py -> age, py -> level);
py = py -> next;
}*/
}
menu();
//menu();
return 0;
}
}