projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixed `inc -silent' by not building a scan line if we don't want to print it.
[mmh]
/
h
/
mf.h
1
/*
2
** mf.h -- include file for mailbox filters
3
*/
4
5
#include <h/nmh.h>
6
7
#ifndef TRUE
8
# define TRUE 1
9
#endif
10
11
#ifndef FALSE
12
# define FALSE 0
13
#endif
14
15
#ifndef NOTOK
16
# define NOTOK (-1)
17
#endif
18
19
#ifndef OK
20
# define OK 0
21
#endif
22
23
#ifndef DONE
24
# define DONE 1
25
#endif
26
27
28
struct adrx {
29
char *text;
30
char *pers;
31
char *mbox;
32
char *host;
33
char *path;
34
char *grp;
35
int ingrp;
36
char *note;
37
char *err;
38
};
39
40
41
/*
42
** prototypes
43
*/
44
char *legal_person(char *);
45
struct adrx *getadrx(char *);