macros/src/read_events.h

10 lines
206 B
C
Raw Normal View History

2022-12-05 14:59:01 +01:00
#ifndef READ_EVENTS
#define READ_EVENTS
#include "event.h"
void write_event(event *new_event, FILE *file);
/* Just listen the input and write them in the parameter file. */
int listen(FILE *file);
#endif