X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fcommon.h;h=9933aa6250753fb5fee0de151968efbeb5bfc9a5;hb=5416153391152c1d894fbae391ba1ccd6f9d1e0e;hp=24aa91df4983247125405e60e2fce31ea4242d24;hpb=bd222d606a41c5e5963651b022802a804a703054;p=chaz%2Ftar diff --git a/src/common.h b/src/common.h index 24aa91d..9933aa6 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 @@ -725,7 +725,14 @@ bool string_ascii_p (const char *str); bool utf8_convert (bool to_utf, char const *input, char **output); /* Module transform.c */ +typedef enum + { + xform_regfile, + xform_link, + xform_symlink + } xform_type; + void set_transform_expr (const char *expr); bool transform_name (char **pinput); -bool transform_member_name (char **pinput, bool lnk); +bool transform_member_name (char **pinput, xform_type type); bool transform_name_fp (char **pinput, char *(*fun)(char *, void *), void *);