| 630 |
void sys_drain_input_pipe (void); |
void sys_drain_input_pipe (void); |
| 631 |
void sys_wait_for_child (pid_t); |
void sys_wait_for_child (pid_t); |
| 632 |
void sys_spawn_shell (void); |
void sys_spawn_shell (void); |
| 633 |
void sys_compare_uid_gid (struct stat *a, struct stat *b); |
bool sys_compare_uid (struct stat *a, struct stat *b); |
| 634 |
|
bool sys_compare_gid (struct stat *a, struct stat *b); |
| 635 |
bool sys_file_is_archive (struct tar_stat_info *p); |
bool sys_file_is_archive (struct tar_stat_info *p); |
| 636 |
void sys_compare_links (struct stat *link_data, struct stat *stat_data); |
bool sys_compare_links (struct stat *link_data, struct stat *stat_data); |
| 637 |
int sys_truncate (int fd); |
int sys_truncate (int fd); |
| 638 |
void sys_reset_uid_gid (void); |
void sys_reset_uid_gid (void); |
| 639 |
pid_t sys_child_open_for_compress (void); |
pid_t sys_child_open_for_compress (void); |
| 642 |
bool sys_get_archive_stat (void); |
bool sys_get_archive_stat (void); |
| 643 |
|
|
| 644 |
/* Module compare.c */ |
/* Module compare.c */ |
| 645 |
void report_difference (const char *message, ...); |
void report_difference (struct tar_stat_info *st, const char *message, ...); |
| 646 |
|
|
| 647 |
/* Module sparse.c */ |
/* Module sparse.c */ |
| 648 |
bool sparse_file_p (struct tar_stat_info *stat); |
bool sparse_file_p (struct tar_stat_info *stat); |
| 649 |
enum dump_status sparse_dump_file (int fd, struct tar_stat_info *stat); |
enum dump_status sparse_dump_file (int fd, struct tar_stat_info *stat); |
| 650 |
enum dump_status sparse_extract_file (int fd, struct tar_stat_info *stat, off_t *size); |
enum dump_status sparse_extract_file (int fd, struct tar_stat_info *stat, off_t *size); |
| 651 |
|
bool sparse_diff_file (int fd, struct tar_stat_info *stat); |