Formatting

This commit is contained in:
Francisco Lopes 2020-12-28 23:35:47 -03:00
parent 7428d959e0
commit 5c7e6b5a5d
No known key found for this signature in database
GPG Key ID: 2E754CF1886344B5

View File

@ -6,11 +6,11 @@
// clang-format off // clang-format off
const struct input_event const struct input_event
syn = {.type = EV_SYN, .code = SYN_REPORT, .value = 0}, syn = {.type = EV_SYN , .code = SYN_REPORT , .value = 0},
esc_up = {.type = EV_KEY, .code = KEY_ESC, .value = 0}, esc_up = {.type = EV_KEY , .code = KEY_ESC , .value = 0},
ctrl_up = {.type = EV_KEY, .code = KEY_LEFTCTRL, .value = 0}, ctrl_up = {.type = EV_KEY , .code = KEY_LEFTCTRL , .value = 0},
esc_down = {.type = EV_KEY, .code = KEY_ESC, .value = 1}, esc_down = {.type = EV_KEY , .code = KEY_ESC , .value = 1},
ctrl_down = {.type = EV_KEY, .code = KEY_LEFTCTRL, .value = 1}; ctrl_down = {.type = EV_KEY , .code = KEY_LEFTCTRL , .value = 1};
// clang-format on // clang-format on
void print_usage(FILE *stream, const char *program) { void print_usage(FILE *stream, const char *program) {