1 #ifndef TERMINAL_INPUT_H
2 #define TERMINAL_INPUT_H
3 
4 #include <stdbool.h>
5 #include <stddef.h>
6 #include "key.h"
7 
8 bool term_read_key(KeyCode *key);
9 char *term_read_paste(size_t *size);
10 void term_discard_paste(void);
11 
12 bool term_get_size(int *w, int *h);
13 
14 #endif
15