]> Dogcows Code - chaz/tar/commitdiff
(save_name,save_sizeleft,save_totsize): Remove
authorSergey Poznyakoff <gray@gnu.org.ua>
Wed, 9 Nov 2005 13:08:13 +0000 (13:08 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Wed, 9 Nov 2005 13:08:13 +0000 (13:08 +0000)
globals.
(volume_label,continued_file_name,continued_file_size): New
variables.
(flush_read,flush_write): Pointers to functions
(mv_begin,mv_end,mv_total_size,mv_size_left): New functions
(write_extended): New function.

src/common.h

index c1effd4d69f04ee225d31c5cb6dc98d7b986f4c0..cbcd2c735d5f9995325b01d5fd1b4c48e9d9ddfb 100644 (file)
@@ -317,7 +317,8 @@ GLOBAL bool unquote_option;
 GLOBAL bool test_label_option; /* Test archive volume label and exit */
 
 GLOBAL bool show_stored_names_option; /* When creating archive in verbose mode,
-                                        list member names as stored in the archive */
+                                        list member names as stored in the
+                                        archive */
 
 \f
 /* Declarations for each module.  */
@@ -336,18 +337,19 @@ extern enum access_mode access_mode;
 /* Module buffer.c.  */
 
 extern FILE *stdlis;
-extern char *save_name;
-extern off_t save_sizeleft;
-extern off_t save_totsize;
 extern bool write_archive_to_stdout;
+extern char *volume_label;
+extern char *continued_file_name;
+extern uintmax_t continued_file_size;
+extern uintmax_t continued_file_offset;
 
 size_t available_space_after (union block *);
 off_t current_block_ordinal (void);
 void close_archive (void);
 void closeout_volume_number (void);
 union block *find_next_block (void);
-void flush_read (void);
-void flush_write (void);
+void (*flush_read) (void);
+void (*flush_write) (void);
 void flush_archive (void);
 void init_volume_number (void);
 void open_archive (enum access_mode);
@@ -361,6 +363,12 @@ void archive_read_error (void);
 off_t seek_archive (off_t size);
 void set_start_time (void);
 
+void mv_begin (struct tar_stat_info *st);
+void mv_end (void);
+void mv_total_size (off_t size);
+void mv_size_left (off_t size);
+
+
 /* Module create.c.  */
 
 enum dump_status
@@ -378,6 +386,8 @@ void dump_file (char *, int, dev_t);
 union block *start_header (struct tar_stat_info *st);
 void finish_header (struct tar_stat_info *, union block *, off_t);
 void simple_finish_header (union block *header);
+union block * write_extended (char type, struct tar_stat_info *st,
+                             union block *old_header);
 union block *start_private_header (const char *name, size_t size);
 void write_eot (void);
 void check_links (void);
This page took 0.028809 seconds and 4 git commands to generate.