11 lines
133 B
C
11 lines
133 B
C
#include <stdio.h>
|
|
#include "keyboard.h"
|
|
|
|
int key_event() {
|
|
int pressed_key;
|
|
|
|
pressed_key = getchar();
|
|
|
|
return(pressed_key);
|
|
}
|