conf-database/main.c
2023-11-12 14:59:55 +01:00

15 lines
No EOL
288 B
C

#include <stdlib.h>
#include <stdio.h>
#include "conf.h"
int main()
{
ptConf confChain = newConfChain();
addConf(confChain, "test", "tesst", 21, 120, 2023);
printf("title : %s\nspeaker : %s\n", confChain -> title, confChain -> speaker);
printDate(confChain -> date);
return 0;
}