blob: d532afd662750ab328442390c2b7404753d07da5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef KNOB_KEY_H
#define KNOB_KEY_H
#ifdef __cplusplus
extern "C" {
#endif
#include <keypack.h>
char key_to_char(struct key_packet kp) __attribute__ ((pure));
#ifdef __cplusplus
}
#endif
#endif
|