event.h 223 B

123456789
  1. #ifndef EVENT_HEADER
  2. #define EVENT_HEADER
  3. int equal(const struct input_event *first, const struct input_event *second);
  4. int read_event(struct input_event *event);
  5. void write_event(const struct input_event *event);
  6. #endif