18 lines
382 B
C
18 lines
382 B
C
/**
|
|
* Copyright (c) 2017 rxi
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify it
|
|
* under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
int keyboard_init(void);
|
|
void keyboard_deinit(void);
|
|
void keyboard_setKeyRepeat(int allow);
|
|
int keyboard_isDown(const char *key);
|
|
void keyboard_update(void);
|
|
|
|
#endif
|