Files
KatauOS/include/keyboard.h
T
2025-11-18 17:54:24 +03:00

17 lines
302 B
C

#ifndef KEYBOARD_H
#define KEYBOARD_H
#include "../include/utils.h"
#include "../include/stdio.h"
#include <stdbool.h>
#define STDIN_BUFFER_SIZE 4096
extern char stdin_buffer[STDIN_BUFFER_SIZE];
extern int stdin_pos;
extern bool stdin_has_line;
void handle_keyboard();
void init_keyboard();
#endif