2 ** m_msgdef.c -- some defines for sbr/m_getfld.c
4 ** This code is Copyright (c) 2002, by the authors of nmh. See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
12 ** disgusting hack for "inc" so it can know how many characters
13 ** were stuffed in the buffer on the last call (see comments
18 int msg_style = MS_DEFAULT;
21 ** The "full" delimiter string for a packed maildrop consists
22 ** of a newline followed by the actual delimiter. E.g., the
23 ** full string for a Unix maildrop would be: "\n\nFrom ".
24 ** "Fdelim" points to the start of the full string and is used
25 ** in the BODY case of the main routine to search the buffer for
26 ** a possible eom. Msg_delim points to the first character of
27 ** the actual delim. string (i.e., fdelim+1). Edelim
28 ** points to the 2nd character of actual delimiter string. It
29 ** is used in m_Eom because the first character of the string
30 ** has been read and matched before m_Eom is called.