aboutsummaryrefslogtreecommitdiffstats
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorOlivier Biot <obiot.ethereal@gmail.com>2004-05-01 20:46:24 +0000
committerOlivier Biot <obiot.ethereal@gmail.com>2004-05-01 20:46:24 +0000
commit2650b496796d161c0c158dc83e49dcfeea30d74a (patch)
tree54b6828c286d2eba29f0b424c40f23535b65c5da /epan/strutil.h
parent8d29376f42afaa7175b5f8bf009c6d885e80e3d6 (diff)
Add an XML escaping routine: xml_escape()
svn path=/trunk/; revision=10759
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/strutil.h b/epan/strutil.h
index a90c294646..f78b5a7c0e 100644
--- a/epan/strutil.h
+++ b/epan/strutil.h
@@ -1,7 +1,7 @@
/* strutil.h
* String utility definitions
*
- * $Id: strutil.h,v 1.14 2004/01/25 16:58:25 jmayer Exp $
+ * $Id: strutil.h,v 1.15 2004/05/01 20:46:24 obiot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -35,6 +35,7 @@ gchar* format_text(const guchar *line, int len);
gchar* bytes_to_str(const guint8 *, int);
gchar* bytes_to_str_punct(const guint8 *, int, gchar punct);
gboolean hex_str_to_bytes(const char *hex_str, GByteArray *bytes);
+gchar* xml_escape(const gchar *unescaped);
const guint8 * epan_memmem(const guint8 *haystack, guint haystack_len,
const guint8 *needle, guint needle_len);