summaryrefslogtreecommitdiff
path: root/libarchive_fe/matching.h
diff options
context:
space:
mode:
Diffstat (limited to 'libarchive_fe/matching.h')
-rw-r--r--libarchive_fe/matching.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/libarchive_fe/matching.h b/libarchive_fe/matching.h
index f4edebd4..4c174a84 100644
--- a/libarchive_fe/matching.h
+++ b/libarchive_fe/matching.h
@@ -29,18 +29,10 @@
#ifndef MATCHING_H
#define MATCHING_H
-struct lafe_matching;
+#include "archive.h"
-int lafe_exclude(struct lafe_matching **matching, const char *pattern);
-int lafe_exclude_from_file(struct lafe_matching **matching,
- const char *pathname);
-int lafe_include(struct lafe_matching **matching, const char *pattern);
-int lafe_include_from_file(struct lafe_matching **matching,
+int lafe_exclude_from_file(struct archive *, const char *pathname);
+int lafe_include_from_file(struct archive *,
const char *pathname, int nullSeparator);
-int lafe_excluded(struct lafe_matching *, const char *pathname);
-void lafe_cleanup_exclusions(struct lafe_matching **);
-int lafe_unmatched_inclusions(struct lafe_matching *);
-int lafe_unmatched_inclusions_warn(struct lafe_matching *, const char *msg);
-
#endif