Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-09-25 06:47:48 +0400
committerGlenn L McGrath <bug1@ihug.co.nz>2002-09-25 06:47:48 +0400
commit7ca04f328e22fcbee4659d73f9a72dfdf1dd6a23 (patch)
treef38c7ef4317eea28c6abdb0adbbb286fe041711e /archival/libunarchive/filter_accept_all.c
parentecfa290cfd4953598e6d91989bd66ac16e135f84 (diff)
New common unarchive code.
Diffstat (limited to 'archival/libunarchive/filter_accept_all.c')
-rw-r--r--archival/libunarchive/filter_accept_all.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/archival/libunarchive/filter_accept_all.c b/archival/libunarchive/filter_accept_all.c
new file mode 100644
index 000000000..0471ccef0
--- /dev/null
+++ b/archival/libunarchive/filter_accept_all.c
@@ -0,0 +1,10 @@
+#include <fnmatch.h>
+#include <stdlib.h>
+#include "unarchive.h"
+/*
+ * Accept names that are in the accept list
+ */
+extern char filter_accept_all(const llist_t *accept_list, const llist_t *reject_list, const char *key)
+{
+ return(EXIT_SUCCESS);
+}