summaryrefslogtreecommitdiff
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-11-09 02:42:33 +0000
committerGuy Harris <guy@alum.mit.edu>2000-11-09 02:42:33 +0000
commit37ec8b1b32426eee1c2c6ce002e1bb89b9fc38ce (patch)
treee1304cd14f053fb6556260629a771ab550b8e301 /epan/strutil.h
parentb913b923541346f2dfa6ad25f32a8c432b143360 (diff)
downloadwireshark-37ec8b1b32426eee1c2c6ce002e1bb89b9fc38ce.tar.gz
Support for embedded newlines in SDP fields, from Robert Tsai.
svn path=/trunk/; revision=2584
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/strutil.h b/epan/strutil.h
index 6464500d73..55f382d297 100644
--- a/epan/strutil.h
+++ b/epan/strutil.h
@@ -1,7 +1,7 @@
/* strutil.h
* String utility definitions
*
- * $Id: strutil.h,v 1.2 2000/09/28 03:16:17 gram Exp $
+ * $Id: strutil.h,v 1.3 2000/11/09 02:42:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -38,6 +38,8 @@
const u_char *find_line_end(const u_char *data, const u_char *dataend,
const u_char **eol);
+const u_char *find_line_end_unquoted(const u_char *data, const u_char *dataend,
+ const u_char **eol);
int get_token_len(const u_char *linep, const u_char *lineend,
const u_char **next_token);
gchar* format_text(const u_char *line, int len);