aboutsummaryrefslogtreecommitdiffstats
path: root/epan/strutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/epan/strutil.h b/epan/strutil.h
index 973bc8a06e..d7a7560b32 100644
--- a/epan/strutil.h
+++ b/epan/strutil.h
@@ -61,18 +61,6 @@ int get_token_len(const guchar *linep, const guchar *lineend,
/** Given a string, generate a string from it that shows non-printable
* characters as C-style escapes, and return a pointer to it.
*
- * @param line A pointer to the input string
- * @param len The length of the input string
- * @return A pointer to the formatted string
- *
- * @see tvb_format_text()
- */
-WS_DLL_PUBLIC
-gchar* format_text(const guchar *line, size_t len);
-
-/** Given a string, generate a string from it that shows non-printable
- * characters as C-style escapes, and return a pointer to it.
- *
* @param allocator The wmem scope
* @param line A pointer to the input string
* @param len The length of the input string
@@ -81,7 +69,7 @@ gchar* format_text(const guchar *line, size_t len);
* @see tvb_format_text()
*/
WS_DLL_PUBLIC
-gchar* format_text_wmem(wmem_allocator_t* allocator, const guchar *line, size_t len);
+gchar* format_text(wmem_allocator_t* allocator, const guchar *line, size_t len);
/**
* Given a string, generate a string from it that shows non-printable