aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2023-06-16 13:02:47 +0100
committerRon Yorston <rmy@pobox.com>2023-06-16 13:02:47 +0100
commit4b3d7e62cff6015e1c4b856165efd90cf9182a5c (patch)
tree0a59c6a94a47c3e8f1a47b0a3218f9591b842385 /include
parent0627e352656effac8d8e617378e7a68edfce41df (diff)
parent2ca39ffd447ca874fcea933194829717d5573247 (diff)
downloadbusybox-w32-4b3d7e62cff6015e1c4b856165efd90cf9182a5c.tar.gz
busybox-w32-4b3d7e62cff6015e1c4b856165efd90cf9182a5c.tar.bz2
busybox-w32-4b3d7e62cff6015e1c4b856165efd90cf9182a5c.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'include')
-rw-r--r--include/dump.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/dump.h b/include/dump.h
index 10fc5d900..c6763a64d 100644
--- a/include/dump.h
+++ b/include/dump.h
@@ -33,9 +33,14 @@ typedef struct dumper_t {
33 int dump_length; /* max bytes to read */ 33 int dump_length; /* max bytes to read */
34 smallint dump_vflag; /*enum dump_vflag_t*/ 34 smallint dump_vflag; /*enum dump_vflag_t*/
35 FS *fshead; 35 FS *fshead;
36#if ENABLE_OD
37 const char *od_eofstring;
38#endif
39#if ENABLE_XXD
36 const char *xxd_eofstring; 40 const char *xxd_eofstring;
37 off_t address; /* address/offset in stream */
38 long long xxd_displayoff; 41 long long xxd_displayoff;
42#endif
43 off_t address; /* address/offset in stream */
39} dumper_t; 44} dumper_t;
40 45
41dumper_t* alloc_dumper(void) FAST_FUNC; 46dumper_t* alloc_dumper(void) FAST_FUNC;