diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-18 15:31:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-18 15:31:08 +0200 |
commit | 72597a57b526a8df333e77ef8a837b595baa18c7 (patch) | |
tree | 8b635e3dbb23f92a0a73b730cc79bc538c0b61b9 /src/proto | |
parent | 9855d6b3610b3ae46a5522b9f8e1e4b521759e83 (diff) | |
download | vim-git-72597a57b526a8df333e77ef8a837b595baa18c7.tar.gz |
Added strwidth() and strchars() functions.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/mbyte.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/mbyte.pro b/src/proto/mbyte.pro index e805cb442..9519a1937 100644 --- a/src/proto/mbyte.pro +++ b/src/proto/mbyte.pro @@ -14,6 +14,7 @@ int utf_ptr2cells __ARGS((char_u *p)); int dbcs_ptr2cells __ARGS((char_u *p)); int latin_ptr2cells_len __ARGS((char_u *p, int size)); int latin_char2cells __ARGS((int c)); +int mb_string2cells __ARGS((char_u *p, int len)); int latin_off2cells __ARGS((unsigned off, unsigned max_off)); int dbcs_off2cells __ARGS((unsigned off, unsigned max_off)); int utf_off2cells __ARGS((unsigned off, unsigned max_off)); |