diff options
author | mjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-03-19 09:13:01 +0000 |
---|---|---|
committer | mjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-03-19 09:13:01 +0000 |
commit | e901c15d890dbbdce4c086963cb1513653fc46b5 (patch) | |
tree | a318d0f03aa076c74b576ea45dc543a5669e8e91 /include/dump.h | |
parent | 40758c00616c3b2c85d83eb4afdeb04b1f65c9f1 (diff) | |
download | busybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.tar.gz busybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.tar.bz2 busybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.zip |
Major coreutils update.
git-svn-id: svn://busybox.net/trunk/busybox@6751 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 */ | ||