#include "config.h"
#include <stddef.h>
#include "private.h"
#include "mutt/lib.h"
#include "mutt.h"
#include "lib.h"
Go to the source code of this file.
Functions | |
const struct PatternFlags * | lookup_tag (char tag) |
Lookup a pattern modifier. | |
const struct PatternFlags * | lookup_op (int op) |
Lookup the Pattern Flags for an op. | |
Variables | |
const struct PatternFlags | Flags [] |
Lookup table for all patterns. | |
Pattern definitions.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file flags.c.
const struct PatternFlags * lookup_tag | ( | char | tag | ) |
Lookup a pattern modifier.
tag | Letter, e.g. 'b' for pattern '~b' |
ptr | Pattern data |
Definition at line 198 of file flags.c.
const struct PatternFlags * lookup_op | ( | int | op | ) |
Lookup the Pattern Flags for an op.
op | Operation, e.g. MUTT_PAT_SENDER |
ptr | PatternFlags |
Definition at line 211 of file flags.c.
const struct PatternFlags Flags[] |