summaryrefslogtreecommitdiff
path: root/src/proto.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-06-27 01:15:55 +0200
committerBram Moolenaar <Bram@vim.org>2010-06-27 01:15:55 +0200
commita800b42975f7a62282cb90d8c61ef3cff2fe810a (patch)
tree9ecc9705a77dcc23b87ba2dffb9a06765625519a /src/proto.h
parentd69980f9dd1a538e9ba4313616f3be452c95206d (diff)
downloadvim-git-a800b42975f7a62282cb90d8c61ef3cff2fe810a.tar.gz
Add file save counter to undo information. Add undotree() function.
Diffstat (limited to 'src/proto.h')
-rw-r--r--src/proto.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h
index 331365615..01db6895f 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -110,16 +110,25 @@ int
_RTLENTRYF
# endif
smsg __ARGS((char_u *, ...));
+
int
# ifdef __BORLANDC__
_RTLENTRYF
# endif
smsg_attr __ARGS((int, char_u *, ...));
+
+int
+# ifdef __BORLANDC__
+_RTLENTRYF
+# endif
+vim_snprintf_add __ARGS((char *, size_t, char *, ...));
+
int
# ifdef __BORLANDC__
_RTLENTRYF
# endif
vim_snprintf __ARGS((char *, size_t, char *, ...));
+
# if defined(HAVE_STDARG_H)
int vim_vsnprintf(char *str, size_t str_m, char *fmt, va_list ap, typval_T *tvs);
# endif