aboutsummaryrefslogtreecommitdiffhomepage
path: root/util.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-12 20:34:21 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-12 20:34:21 +1000
commit4636b783a047dbaa5d75c09cfa22fd219924d12c (patch)
tree830a98e0e0a2d214d6b496a1149dff7627210dc0 /util.h
parentb90e670d6fcf6b8a6e3dfef3776194be00f09f14 (diff)
Do automatic line breaking in debug
darcs-hash:20051012103421-ac50b-d3cba7cb40287fd97cccc246a19dcb2273bf8b82.gz
Diffstat (limited to 'util.h')
-rw-r--r--util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/util.h b/util.h
index f498811e..7bbd3970 100644
--- a/util.h
+++ b/util.h
@@ -6,6 +6,7 @@
#define FISH_UTIL_H
#include <wchar.h>
+#include <stdarg.h>
/**
Data structure for an automatically resizing dynamically allocated queue,
@@ -442,6 +443,10 @@ void sb_append2( string_buffer_t *, ... );
*/
int sb_printf( string_buffer_t *buffer, const wchar_t *format, ... );
+/**
+ Vararg version of sb_printf
+*/
+int sb_vprintf( string_buffer_t *buffer, const wchar_t *format, va_list va_orig );
/**
Destroy the buffer and free it's memory