aboutsummaryrefslogtreecommitdiff
path: root/common/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/util.h')
-rw-r--r--common/util.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/util.h b/common/util.h
index 3b2a705d6c..a7d6260583 100644
--- a/common/util.h
+++ b/common/util.h
@@ -96,8 +96,9 @@ private:
* @param data the data to be dumped
* @param len the lenght of that data
* @param bytesPerLine number of bytes to print per line (default: 16)
+ * @param startOffset shift the shown offsets by the starting offset (default: 0)
*/
-extern void hexdump(const byte * data, int len, int bytesPerLine = 16);
+extern void hexdump(const byte * data, int len, int bytesPerLine = 16, int startOffset = 0);
/**