aboutsummaryrefslogtreecommitdiffstats
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-10 09:44:02 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-10 09:44:02 +0000
commit7b64bcf0b89c6d186ba1b717969cb99c2b5f0fdd (patch)
treeec5991aba0244fe53cbd6937bece55af994ad761 /epan/strutil.h
parentaf0819f942fc85919fe9e81a9e990b0f9bf50ca2 (diff)
Move prototype of bytes_to_str, bytes_to_str_punct to correct header.
svn path=/trunk/; revision=53214
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/epan/strutil.h b/epan/strutil.h
index e791b4df5a..7aa499960a 100644
--- a/epan/strutil.h
+++ b/epan/strutil.h
@@ -102,30 +102,6 @@ WS_DLL_PUBLIC
gchar* format_text_chr(const guchar *string, const size_t len, const guchar chr);
-/** Turn an array of bytes into a string showing the bytes in hex.
- *
- * @param bd A pointer to the byte array
- * @param bd_len The length of the byte array
- * @return A pointer to the formatted string
- *
- * @see bytes_to_str_punct()
- */
-WS_DLL_PUBLIC
-gchar* bytes_to_str(const guint8 *bd, int bd_len);
-
-/** Turn an array of bytes into a string showing the bytes in hex,
- * separated by a punctuation character.
- *
- * @param bd A pointer to the byte array
- * @param bd_len The length of the byte array
- * @param punct The punctuation character
- * @return A pointer to the formatted string
- *
- * @see bytes_to_str()
- */
-WS_DLL_PUBLIC
-gchar* bytes_to_str_punct(const guint8 *bd, int bd_len, gchar punct);
-
/** Turn a string of hex digits with optional separators (defined by
* is_byte_sep() into a byte array.
*