aboutsummaryrefslogtreecommitdiff
path: root/include/dump.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dump.h')
-rw-r--r--include/dump.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/dump.h b/include/dump.h
index 0e8dbe07f..3f4b480b2 100644
--- a/include/dump.h
+++ b/include/dump.h
@@ -38,5 +38,12 @@ typedef struct _fs { /* format strings */
38 int bcnt; 38 int bcnt;
39} FS; 39} FS;
40 40
41void add(char *fmt); 41extern void bb_dump_add(const char *fmt);
42int dump (char **argv); 42extern int bb_dump_dump (char **argv);
43extern int bb_dump_size(FS * fs);
44
45extern FS *bb_dump_fshead; /* head of format strings */
46extern int bb_dump_blocksize; /* data block size */
47extern int bb_dump_length; /* max bytes to read */
48extern enum _vflag bb_dump_vflag;
49extern off_t bb_dump_skip; /* bytes to skip */