commit
This commit is contained in:
commit
244151ff0e
4 changed files with 54 additions and 0 deletions
24
conf.h
Normal file
24
conf.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue