blob: 79a549857c259b80fc0cb50a17508c8bae897304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef LAYER_H
#define LAYER_H 1
#include <stdint.h>
/* return keycode for switch */
uint8_t layer_get_keycode(uint8_t row, uint8_t col);
/* process layer switching */
void layer_switching(uint8_t fn_bits);
#endif
|