source: trunk/third/nmh/sbr/m_msgdef.c @ 12455

Revision 12455, 975 bytes checked in by danw, 26 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r12454, which included commits to RCS files with non-trunk default branches.
Line 
1
2/*
3 * m_msgdef.c -- some defines for sbr/m_getfld.c
4 *
5 * $Id: m_msgdef.c,v 1.1.1.1 1999-02-07 18:14:10 danw Exp $
6 */
7
8#include <h/mh.h>
9
10/*
11 * disgusting hack for "inc" so it can know how many characters
12 * were stuffed in the buffer on the last call (see comments
13 * in uip/scansbr.c)
14 */
15int msg_count = 0;
16
17int msg_style = MS_DEFAULT;
18
19/*
20 * The "full" delimiter string for a packed maildrop consists
21 * of a newline followed by the actual delimiter.  E.g., the
22 * full string for a Unix maildrop would be: "\n\nFrom ".
23 * "Fdelim" points to the start of the full string and is used
24 * in the BODY case of the main routine to search the buffer for
25 * a possible eom.  Msg_delim points to the first character of
26 * the actual delim. string (i.e., fdelim+1).  Edelim
27 * points to the 2nd character of actual delimiter string.  It
28 * is used in m_Eom because the first character of the string
29 * has been read and matched before m_Eom is called.
30 */
31char *msg_delim = "";
Note: See TracBrowser for help on using the repository browser.