summaryrefslogtreecommitdiff
path: root/matrix.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2010-10-24 01:17:26 +0900
committertmk <nobody@nowhere>2010-10-24 01:17:26 +0900
commit06eb50be07ff16e4bfb046e4773185d9bcf048e9 (patch)
tree86a8fb688282004893eedd28641f8300c9d812d1 /matrix.h
parent9d7979931e0037fc5ddc77a2cb895eb055501f34 (diff)
hhkb: refactored
Diffstat (limited to 'matrix.h')
-rw-r--r--matrix.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/matrix.h b/matrix.h
deleted file mode 100644
index 74b5f894b1..0000000000
--- a/matrix.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef MATRIX_H
-#define MATRIX_H 1
-
-#include <stdbool.h>
-
-extern uint8_t *matrix;
-extern uint8_t *matrix_prev;
-
-void matrix_init(void);
-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