diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-16 00:20:37 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-08-16 00:20:37 +0200 |
commit | bb70eec17782501db35683f48136fcced9eae259 (patch) | |
tree | 2c0185c522e0c32f6a553098dc706a9ac26cb8be /src/nvim/mbyte.h | |
parent | ab72063a52248cc5c173424d82cfee001a40e93c (diff) | |
parent | 19a28352a925b0a8502d57ec4f42b1412639aa6c (diff) | |
download | rneovim-bb70eec17782501db35683f48136fcced9eae259.tar.gz rneovim-bb70eec17782501db35683f48136fcced9eae259.tar.bz2 rneovim-bb70eec17782501db35683f48136fcced9eae259.zip |
Merge #6364 'command-line color hook'
Diffstat (limited to 'src/nvim/mbyte.h')
-rw-r--r-- | src/nvim/mbyte.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/mbyte.h b/src/nvim/mbyte.h index ad9e38004c..02c6065672 100644 --- a/src/nvim/mbyte.h +++ b/src/nvim/mbyte.h @@ -1,6 +1,7 @@ #ifndef NVIM_MBYTE_H #define NVIM_MBYTE_H +#include <stdint.h> #include <stdbool.h> #include <string.h> @@ -67,6 +68,8 @@ typedef struct { ///< otherwise use '?'. } vimconv_T; +extern const uint8_t utf8len_tab_zero[256]; + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "mbyte.h.generated.h" #endif |