src/filter.h
/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following functions.
/* $Id: filter.h,v 1.1.1.1 1998/07/29 15:14:29 proff Exp $
* $Copyright$
*/
#ifndef FILTER_H
#define FILTER_H
#ifdef USE_REGEX
# include "reg.h"
#endif
struct filter
{
struct filter *next;
char *pat;
#ifdef USE_REGEX
regex_t preg;
#endif
int weight;
char weight_op; /* weight opperation, '/' or '*', or NIL */
enum scope_enum {sc_head, sc_ahead, sc_body, sc_article, sc_header} scope;
char *scope_header;
int ignore_case;
};
#include "filter.ext"
#endif /* FILTER_H */