projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added MACHINES to EXTRA_DIST so that it gets put in the distribution.
[mmh]
/
docs
/
historical
/
mh-6.8.5
/
sbr
/
m_seqflag.c
1
/* m_seqflag.c - return the flag (bit) for a sequence */
2
3
#include "../h/mh.h"
4
5
6
int m_seqflag (mp, cp)
7
register struct msgs *mp;
8
register char *cp;
9
{
10
int bits;
11
register int i;
12
13
bits = FFATTRSLOT;
14
for (i = 0; mp -> msgattrs[i]; i++)
15
if (strcmp (mp -> msgattrs[i], cp) == 0)
16
return (1 << (bits + i));
17
18
return 0;
19
}