All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m35s
13 lines
222 B
C
13 lines
222 B
C
#ifndef _LIBKB_KB_H
|
|
#define _LIBKB_KB_H
|
|
|
|
#include <devices.h>
|
|
#include <stdint.h>
|
|
|
|
/* \brief Read key from keyboard
|
|
* \return < 0 status on failure; ascii key on success
|
|
*/
|
|
int kb_read_key (void);
|
|
|
|
#endif // _LIBKB_KB_H
|