diff options
Diffstat (limited to 'src/libutil/printf.h')
-rw-r--r-- | src/libutil/printf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libutil/printf.h b/src/libutil/printf.h index 8cd699212..ea73cf0a0 100644 --- a/src/libutil/printf.h +++ b/src/libutil/printf.h @@ -26,6 +26,7 @@ #define PRINTF_H_ #include "config.h" +#include "fstring.h" /* * supported formats: @@ -78,6 +79,9 @@ gchar * rspamd_vsnprintf (gchar *buf, glong max, const gchar *fmt, glong rspamd_printf_gstring (GString *s, const gchar *fmt, ...); glong rspamd_vprintf_gstring (GString *s, const gchar *fmt, va_list args); +glong rspamd_printf_fstring (rspamd_fstring_t **s, const gchar *fmt, ...); +glong rspamd_vprintf_fstring (rspamd_fstring_t **s, const gchar *fmt, va_list args); + glong rspamd_vprintf_common (rspamd_printf_append_func func, gpointer apd, const gchar *fmt, |