15 lines
No EOL
288 B
C
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;
|
|
} |