#ifndef NEOVIM_OS_INPUT_H #define NEOVIM_OS_INPUT_H #include #include #include "types.h" void input_init(void); bool input_ready(void); void input_start(void); void input_stop(void); uint32_t input_read(char *buf, uint32_t count); int os_inchar(char_u *, int, int32_t, int); bool os_char_avail(void); void os_breakcheck(void); #endif // NEOVIM_OS_INPUT_H