Home | History | Annotate | Download | only in unzip

Lines Matching defs:include

39 #include <sys/cdefs.h>
47 #include <sys/queue.h>
48 #include <sys/stat.h>
50 #include <ctype.h>
51 #include <errno.h>
52 #include <fcntl.h>
53 #include <fnmatch.h>
54 #include <stdarg.h>
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <unistd.h>
60 #include <archive.h>
61 #include <archive_entry.h>
63 #include <readpassphrase.h>
264 * Pattern lists for include / exclude processing
272 static struct pattern_list include = STAILQ_HEAD_INITIALIZER(include);
310 * Verify that a given pathname is in the include list and not in the
317 if (!STAILQ_EMPTY(&include) && !match_pattern(&include, pathname))
692 * option) happens first, but the include / exclude patterns are applied
734 /* apply include / exclude patterns */
787 /* apply include / exclude patterns */
1090 add_pattern(&include, argv[nopts++]);