Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/BLI_dynstr.h')
-rw-r--r--source/blender/blenlib/BLI_dynstr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_dynstr.h b/source/blender/blenlib/BLI_dynstr.h
index 453e15a0f3b..39bb4e9e113 100644
--- a/source/blender/blenlib/BLI_dynstr.h
+++ b/source/blender/blenlib/BLI_dynstr.h
@@ -38,6 +38,8 @@
#ifndef BLI_DYNSTR_H
#define BLI_DYNSTR_H
+#include <stdarg.h>
+
struct DynStr;
/** The abstract DynStr type */
@@ -65,6 +67,7 @@ void BLI_dynstr_append (DynStr *ds, const char *cstr);
* @param format The printf format string to use.
*/
void BLI_dynstr_appendf (DynStr *ds, const char *format, ...);
+void BLI_dynstr_vappendf (DynStr *ds, const char *format, va_list args);
/**
* Find the length of a DynStr.