hush/archival/libunarchive/filter_accept_all.c

15 lines
295 B
C
Raw Normal View History

2002-09-25 02:47:48 +00:00
#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)
{
if (key) {
return(EXIT_SUCCESS);
} else {
return(EXIT_FAILURE);
}
2002-09-25 02:47:48 +00:00
}