ArchiSys/TD/TD1/td1_lucas/ex_6/include/ex_6.h
2024-02-02 11:08:48 +01:00

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