summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Text_Buffer.H4
1 files changed, 4 insertions, 0 deletions
diff --git a/FL/Fl_Text_Buffer.H b/FL/Fl_Text_Buffer.H
index 64f6f1e45..8fba33f16 100644
--- a/FL/Fl_Text_Buffer.H
+++ b/FL/Fl_Text_Buffer.H
@@ -22,6 +22,7 @@
#ifndef FL_TEXT_BUFFER_H
#define FL_TEXT_BUFFER_H
+#include <stdarg.h> /* va_start/end */
#undef ASSERT_UTF8
@@ -287,6 +288,9 @@ public:
*/
void append(const char* t) { insert(length(), t); }
+ void vprintf(const char *fmt, va_list ap);
+ void printf(const char* fmt, ...);
+
/**
Deletes a range of characters in the buffer.
\param start byte offset to first character to be removed