comparison ds.h @ 2:f362b20de51e

Remove trailing whitespaces.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 22 Feb 2015 18:03:26 +0100
parents e70ea46d6073
children 73c20831be0a
comparison
equal deleted inserted replaced
1:05c8e0aef77d 2:f362b20de51e
11 uint8_t X:1; 11 uint8_t X:1;
12 uint8_t Y:1; 12 uint8_t Y:1;
13 uint8_t L:1; 13 uint8_t L:1;
14 uint8_t R:1; 14 uint8_t R:1;
15 uint8_t Start:1; 15 uint8_t Start:1;
16 uint8_t Select:1; 16 uint8_t Select:1;
17 uint8_t aX; 17 uint8_t aX;
18 uint8_t aY; 18 uint8_t aY;
19 } __attribute__((packed)) ds_t; 19 } __attribute__((packed)) ds_t;
20 20
21 21
22 /* 22 /*
23 Throws events according to ds keys status 23 Throws events according to ds keys status
24 */ 24 */
25 extern void ds_process_evt(ds_t* ds, int uinput_fd); 25 extern void ds_process_evt(ds_t* ds, int uinput_fd);
26 26
27 27