diff options
Diffstat (limited to 'include/dump.h')
-rw-r--r-- | include/dump.h | 11 |
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 | ||
41 | void add(char *fmt); | 41 | extern void bb_dump_add(const char *fmt); |
42 | int dump (char **argv); | 42 | extern int bb_dump_dump (char **argv); |
43 | extern int bb_dump_size(FS * fs); | ||
44 | |||
45 | extern FS *bb_dump_fshead; /* head of format strings */ | ||
46 | extern int bb_dump_blocksize; /* data block size */ | ||
47 | extern int bb_dump_length; /* max bytes to read */ | ||
48 | extern enum _vflag bb_dump_vflag; | ||
49 | extern off_t bb_dump_skip; /* bytes to skip */ | ||