exclude
_BIG5Exclude *exclude;
TAILQ_FOREACH(exclude, &ei->excludes, entry) {
if (c >= exclude->start && c <= exclude->end)
_BIG5Exclude *exclude;
exclude = TAILQ_LAST(&ei->excludes, _BIG5ExcludeList);
if (exclude != NULL && (wint_t)start <= exclude->end)
exclude = (void *)malloc(sizeof(*exclude));
if (exclude == NULL)
exclude->start = (wint_t)start;
exclude->end = (wint_t)end;
TAILQ_INSERT_TAIL(&ei->excludes, exclude, entry);
_BIG5Exclude *exclude;
while ((exclude = TAILQ_FIRST(&ei->excludes)) != NULL) {
TAILQ_REMOVE(&ei->excludes, exclude, entry);
free(exclude);
DB *exclude; /* compat exclude DB */
if (state->exclude != NULL)
(void)(state->exclude->close)(state->exclude);
state->exclude = NULL;
if (state->exclude == NULL) {
state->exclude = dbopen(NULL, O_RDWR, 600, DB_HASH, NULL);
if (state->exclude == NULL)
if ((state->exclude->put)(state->exclude, &key, &data, 0) == -1)
if (state->exclude == NULL)
if ((state->exclude->get)(state->exclude, &key, &data, 0) == 0)
add_pattern(&exclude, optarg);
static struct pattern_list exclude = STAILQ_HEAD_INITIALIZER(exclude);
if (!STAILQ_EMPTY(&exclude) && match_pattern(&exclude, pathname))
struct exclude *e;
LIST_ENTRY(exclude) link;
static LIST_HEAD(, exclude) excludes;
struct exclude *e;