aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'epan/column-utils.h')
-rw-r--r--epan/column-utils.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/column-utils.h b/epan/column-utils.h
index 25efa8a75a..3a4587fb90 100644
--- a/epan/column-utils.h
+++ b/epan/column-utils.h
@@ -228,6 +228,10 @@ WS_DLL_PUBLIC void col_set_str(column_info *cinfo, const gint col, const gchar *
*/
WS_DLL_PUBLIC void col_add_str(column_info *cinfo, const gint col, const gchar *str);
+/* terminator argument for col_add_lstr() function */
+#define COL_ADD_LSTR_TERMINATOR (const char *) -1
+WS_DLL_PUBLIC void col_add_lstr(column_info *cinfo, const gint el, const gchar *str, ...);
+
/** Add (replace) the text of a column element, the text will be formatted and copied.
*
* Same function as col_add_str() but using a printf-like format string.