1 #include "../git-compat-util.h"
4 * The size parameter specifies the available space, i.e. includes
5 * the trailing NUL byte; but Windows's vsnprintf expects the
6 * number of characters to write without the trailing NUL.
8 #ifndef SNPRINTF_SIZE_CORR
9 #define SNPRINTF_SIZE_CORR 0
13 int git_vsnprintf(char *str, size_t maxsize, const char *format, va_list ap)
19 ret = vsnprintf(str, maxsize-SNPRINTF_SIZE_CORR, format, ap);
20 /* Windows does not NUL-terminate if result fills buffer */
32 str = realloc(s, maxsize);
36 ret = vsnprintf(str, maxsize-SNPRINTF_SIZE_CORR, format, ap);
42 int git_snprintf(char *str, size_t maxsize, const char *format, ...)
48 ret = git_vsnprintf(str, maxsize, format, ap);