diff options
Diffstat (limited to 'matrix.h')
-rw-r--r-- | matrix.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef MATRIX_H +#define MATRIX_H 1 + #include <stdbool.h> extern uint8_t *matrix; @@ -8,3 +11,5 @@ uint8_t matrix_scan(void); bool matrix_is_modified(void); bool matrix_has_ghost(void); bool matrix_has_ghost_in_row(uint8_t row); + +#endif |