summaryrefslogtreecommitdiff
path: root/epan/tvbuff.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-21 20:11:55 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-21 20:11:55 +0000
commita8ef1df32bcfdb0d16e9c90b2f8d9b88daecdeb5 (patch)
tree80696b0c0505725d96100c7b5c391c64e2db4280 /epan/tvbuff.h
parent512a4983c0baf086ae7909b71e61ed970d98c946 (diff)
downloadwireshark-a8ef1df32bcfdb0d16e9c90b2f8d9b88daecdeb5.tar.gz
fix/add doxygen comments
svn path=/trunk/; revision=15941
Diffstat (limited to 'epan/tvbuff.h')
-rw-r--r--epan/tvbuff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/tvbuff.h b/epan/tvbuff.h
index 01648b0979..efe9ef6d4a 100644
--- a/epan/tvbuff.h
+++ b/epan/tvbuff.h
@@ -393,7 +393,7 @@ extern gint tvb_pbrk_guint8(tvbuff_t *, gint offset, gint maxlength,
*/
extern guint tvb_strsize(tvbuff_t *tvb, gint offset);
-/** Find length of string by looking for end of string ('\0'), up to
+/** Find length of string by looking for end of zero terminated string, up to
* 'maxlength' characters'; if 'maxlength' is -1, searches to end
* of tvbuff.
* Returns -1 if 'maxlength' reached before finding EOS. */
@@ -430,7 +430,7 @@ extern gchar *tvb_format_stringzpad(tvbuff_t *tvb, gint offset, gint size);
/**
* Given a tvbuff, an offset, and a length, allocate a buffer big enough
* to hold a non-null-terminated string of that length at that offset,
- * plus a trailing '\0', copy the string into it, and return a pointer
+ * plus a trailing zero, copy the string into it, and return a pointer
* to the string.
*
* Throws an exception if the tvbuff ends before the string does.