Lines Matching defs:bsdtar
11 #include "bsdtar.h"
42 init_substitution(struct bsdtar *bsdtar)
46 bsdtar->substitution = subst = malloc(sizeof(*subst));
53 add_substitution(struct bsdtar *bsdtar, const char *rule_text)
61 if ((subst = bsdtar->substitution) == NULL) {
62 init_substitution(bsdtar);
63 subst = bsdtar->substitution;
199 apply_substitution(struct bsdtar *bsdtar, const char *name, char **result,
212 if ((subst = bsdtar->substitution) == NULL)
312 cleanup_substitution(struct bsdtar *bsdtar)
317 if ((subst = bsdtar->substitution) == NULL)