conf-database/conf.h
2023-11-12 14:01:37 +01:00

24 lines
No EOL
338 B
C

#ifndef CONF_H
#define CONF_H
typedef struct date {
int day;
int month;
int year;
} tDate;
typedef struct conf {
tDate date;
char title[30];
char speaker[20];
struct tConf* next;
} tConf;
typedef tDate* ptDate;
typedef tConf* ptConf;
ptDate newDate(int day, int month, int year);
void printDate(ptDate date);
#endif // CONF_H