13 lines
157 B
C
13 lines
157 B
C
#ifndef DEF_EX_6_H
|
|
#define DEF_EX_6_H
|
|
|
|
#include <time.h>
|
|
|
|
|
|
typedef struct event {
|
|
time_t time;
|
|
char* desc;
|
|
struct event* next;
|
|
} event_t;
|
|
|
|
#endif |