X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fcommon.h;h=cbcd2c735d5f9995325b01d5fd1b4c48e9d9ddfb;hb=5b1df7b55e9a77587984511e222b70d01b637205;hp=4ac5d62592563e299421df9f0f577ad6db719837;hpb=06379466c1a2cbf525f7e91e38256674f2bd4c30;p=chaz%2Ftar diff --git a/src/common.h b/src/common.h index 4ac5d62..cbcd2c7 100644 --- a/src/common.h +++ b/src/common.h @@ -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 */ /* 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); @@ -600,6 +610,7 @@ void request_stdin (const char *); void tar_stat_init (struct tar_stat_info *st); void tar_stat_destroy (struct tar_stat_info *st); void usage (int) __attribute__ ((noreturn)); +int tar_timespec_cmp (struct timespec a, struct timespec b); /* Module update.c. */