X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fcommon.h;h=54ef5c2d8979a8eec6c71528e034d5a7c37fdd77;hb=8c528937a93b428910f062bcf984c28922f0cde7;hp=6dd1abd3e2fc322e5be5ff2a0c17335a10cbc368;hpb=f236f3364325c0c78b2d6f00648bbe946baf5482;p=chaz%2Ftar diff --git a/src/common.h b/src/common.h index 6dd1abd..54ef5c2 100644 --- a/src/common.h +++ b/src/common.h @@ -5,7 +5,7 @@ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the - Free Software Foundation; either version 2, or (at your option) any later + Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, but @@ -445,7 +445,11 @@ union block * write_extended (bool global, struct tar_stat_info *st, union block *start_private_header (const char *name, size_t size); void write_eot (void); void check_links (void); - +void exclusion_tag_warning (const char *dirname, const char *tagname, + const char *message); +enum exclusion_tag_type check_exclusion_tags (char *dirname, + const char **tag_file_name); + #define GID_TO_CHARS(val, where) gid_to_chars (val, where, sizeof (where)) #define MAJOR_TO_CHARS(val, where) major_to_chars (val, where, sizeof (where)) #define MINOR_TO_CHARS(val, where) minor_to_chars (val, where, sizeof (where)) @@ -736,3 +740,6 @@ void set_transform_expr (const char *expr); bool transform_name (char **pinput); bool transform_member_name (char **pinput, xform_type type); bool transform_name_fp (char **pinput, char *(*fun)(char *, void *), void *); + +/* Module suffix.c */ +void set_comression_program_by_suffix (const char *name, const char *defprog);