Files
neovim/src/nvim/os/input.h
Thiago de Arruda 42112e04a9 ui: Refactor input buffer handling
All input buffer code was moved to os/input.c, and `inbuf` is now a `RBuffer`
instance(which abstracts static buffer manipulation).
2014-10-18 12:51:35 -03:00

13 lines
234 B
C

#ifndef NVIM_OS_INPUT_H
#define NVIM_OS_INPUT_H
#include <stdint.h>
#include <stdbool.h>
#include "nvim/api/private/defs.h"
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/input.h.generated.h"
#endif
#endif // NVIM_OS_INPUT_H