diff options
author | ZyX <kp-pav@yandex.ru> | 2017-03-26 17:25:03 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-06-27 01:34:54 +0300 |
commit | d82741f8c04d003bb9925d9c46d7e07179810ed4 (patch) | |
tree | 49657c2f8e90cac515c20bf366c5d71d363ef9a1 /src/nvim/mbyte.h | |
parent | 3d25200127bfec90982e82cb3d1fb65f8faff257 (diff) | |
download | rneovim-d82741f8c04d003bb9925d9c46d7e07179810ed4.tar.gz rneovim-d82741f8c04d003bb9925d9c46d7e07179810ed4.tar.bz2 rneovim-d82741f8c04d003bb9925d9c46d7e07179810ed4.zip |
ex_getln: Add some more tests, fix some found errors
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 |