implement prover stdin reading

This commit is contained in:
2025-11-18 17:54:24 +03:00
parent ccf954e1d6
commit 68033325d2
7 changed files with 124 additions and 39 deletions
+7
View File
@@ -3,7 +3,14 @@
#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