From 9835bc4330133fbc283b40cb86e9c8d5c2392c59 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sat, 1 Oct 2005 15:41:27 +0000 Subject: add ast_build_string_va(), which accepts a varargs list directly ensure the _entire_ manager_event() output is either queued or sent via ast_carefulwrite() git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6708 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/strings.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'include/asterisk/strings.h') diff --git a/include/asterisk/strings.h b/include/asterisk/strings.h index e0e5148a3..508a3ba7e 100755 --- a/include/asterisk/strings.h +++ b/include/asterisk/strings.h @@ -174,6 +174,20 @@ void ast_copy_string(char *dst, const char *src, size_t size), */ int ast_build_string(char **buffer, size_t *space, const char *fmt, ...) __attribute__ ((format (printf, 3, 4))); +/*! + \brief Build a string in a buffer, designed to be called repeatedly + + This is a wrapper for snprintf, that properly handles the buffer pointer + and buffer space available. + + \return 0 on success, non-zero on failure. + \param buffer current position in buffer to place string into (will be updated on return) + \param space remaining space in buffer (will be updated on return) + \param fmt printf-style format string + \param ap varargs list of arguments for format +*/ +int ast_build_string_va(char **buffer, size_t *space, const char *fmt, va_list ap); + /*! Make sure something is true */ /*! * Determine if a string containing a boolean value is "true". -- cgit v1.2.3