#ifndef __Keyboard__H
#define __Keyboard__H

#include <stdbool.h>

#ifdef __cplusplus
extern "C" {
#endif

int Keyboard_GetRepeatRate(void);
bool Keyboard_PollShift(void);
bool Keyboard_PollCtrl(void);
bool Keyboard_PollAlt(void);
int Keyboard_KeyPressed(void);

#ifdef __cplusplus
}
#endif

#endif
