aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-05-16 10:21:30 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-05-17 08:05:44 -0300
commit76a2fb5667461a8b7fa1abfb5a2c7381ced3f519 (patch)
treec5f06f37b7019107b9f70f24b5eb9951a5619e17 /src/nvim/api/vim.c
parenta8b0c9e576e9c0155546b03944314449d3f1a5c3 (diff)
downloadrneovim-76a2fb5667461a8b7fa1abfb5a2c7381ced3f519.tar.gz
rneovim-76a2fb5667461a8b7fa1abfb5a2c7381ced3f519.tar.bz2
rneovim-76a2fb5667461a8b7fa1abfb5a2c7381ced3f519.zip
Use more descriptive names for API primitive types
Instead of exposing native C types to a public API that can be consumed by other platforms, we are now using the following translation: int64_t -> Integer double -> Float bool -> Boolean
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 44f805ed38..bdd48336d1 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -66,7 +66,7 @@ Object vim_eval(String str, Error *err)
return rv;
}
-int64_t vim_strwidth(String str)
+Integer vim_strwidth(String str)
{
return mb_string2cells((char_u *)str.data, str.size);
}
@@ -177,7 +177,7 @@ void vim_err_write(String str)
write_msg(str, true);
}
-int64_t vim_get_buffer_count(void)
+Integer vim_get_buffer_count(void)
{
buf_T *b = firstbuf;
uint64_t n = 0;
@@ -212,7 +212,7 @@ void vim_set_current_buffer(Buffer buffer, Error *err)
try_end(err);
}
-int64_t vim_get_window_count(void)
+Integer vim_get_window_count(void)
{
tabpage_T *tp;
win_T *wp;
@@ -265,7 +265,7 @@ void vim_set_current_window(Window window, Error *err)
try_end(err);
}
-int64_t vim_get_tabpage_count(void)
+Integer vim_get_tabpage_count(void)
{
tabpage_T *tp = first_tabpage;
uint64_t rv = 0;