macros/src/read_events.h
2022-12-05 14:59:01 +01:00

10 lines
206 B
C

#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