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