X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fcommon.h;h=da89ad0c95efca2ad8bef0c092d289199bee9a9e;hb=d79bbe0fd112efc3eb8e288edb390806a26db018;hp=3b32f93618b54e2acfb14fc7e9c6e37e5b871296;hpb=cf857388c144a42ea7829d346b91c6f521d5602b;p=chaz%2Ftar diff --git a/src/common.h b/src/common.h index 3b32f93..da89ad0 100644 --- a/src/common.h +++ b/src/common.h @@ -326,9 +326,10 @@ GLOBAL bool unquote_option; GLOBAL bool test_label_option; /* Test archive volume label and exit */ -/* When creating archive in verbose mode, list member names as stored in the - archive */ -GLOBAL bool show_stored_names_option; +/* Show file or archive names after transformation. + In particular, when creating archive in verbose mode, list member names + as stored in the archive */ +GLOBAL bool show_transformed_names_option; /* Delay setting modification times and permissions of extracted directories until the end of extraction. This variable helps correctly restore directory @@ -702,3 +703,10 @@ bool sparse_diff_file (int, struct tar_stat_info *); /* Module utf8.c */ bool string_ascii_p (const char *str); bool utf8_convert (bool to_utf, char const *input, char **output); + +/* Module transform.c */ +void set_transform_expr (const char *expr); +bool transform_name (char **pinput); +bool transform_name_fp (char **pinput, char *(*fun)(char *)); + +