date and time created 83/02/11 15:44:29 by rrh
[unix-history] / usr / src / usr.bin / mail / def.h
index 5049895..f945473 100644 (file)
@@ -10,7 +10,7 @@
 #undef isdigit
 
 /*
 #undef isdigit
 
 /*
- * Sccs Id = "@(#)def.h        2.6 %G%";
+ * Sccs Id = "@(#)def.h        2.10 %G%";
  */
 
 /*
  */
 
 /*
@@ -50,7 +50,7 @@ struct message {
        short   m_flag;                 /* flags, see below */
        short   m_block;                /* block number of this message */
        short   m_offset;               /* offset in block of message */
        short   m_flag;                 /* flags, see below */
        short   m_block;                /* block number of this message */
        short   m_offset;               /* offset in block of message */
-       unsigned        m_size;         /* Bytes in the message */
+       long    m_size;                 /* Bytes in the message */
        short   m_lines;                /* Lines in the message */
 };
 
        short   m_lines;                /* Lines in the message */
 };
 
@@ -191,6 +191,14 @@ struct grouphead {
 #define        NOGRP   ((struct grouphead *) 0)/* The nil grouphead pointer */
 #define        NOGE    ((struct group *) 0)    /* The nil group pointer */
 
 #define        NOGRP   ((struct grouphead *) 0)/* The nil grouphead pointer */
 #define        NOGE    ((struct group *) 0)    /* The nil group pointer */
 
+/*
+ * Structure of the hash table of ignored header fields
+ */
+struct ignore {
+       struct ignore   *i_link;        /* Next ignored field in bucket */
+       char            *i_field;       /* This ignored field */
+};
+
 /*
  * Token values returned by the scanner used for argument lists.
  * Also, sizes of scanner-related things.
 /*
  * Token values returned by the scanner used for argument lists.
  * Also, sizes of scanner-related things.
@@ -235,6 +243,9 @@ struct grouphead {
 #ifndef VMUNIX
 #define        vfork() fork()
 #endif
 #ifndef VMUNIX
 #define        vfork() fork()
 #endif
+#ifndef        SIGRETRO
+#define        sigchild()
+#endif
 
 /*
  * Forward declarations of routine types to keep lint and cc happy.
 
 /*
  * Forward declarations of routine types to keep lint and cc happy.
@@ -274,9 +285,10 @@ char       *rindex();
 char   *rpair();
 char   *salloc();
 char   *savestr();
 char   *rpair();
 char   *salloc();
 char   *savestr();
-char   *savestr();
 char   *skin();
 char   *snarf();
 char   *skin();
 char   *snarf();
+char   *strcat();
+char   *strcpy();
 char   *value();
 char   *vcopy();
 char   *yankword();
 char   *value();
 char   *vcopy();
 char   *yankword();
@@ -295,4 +307,6 @@ struct      name    *put();
 struct name    *usermap();
 struct name    *verify();
 struct var     *lookup();
 struct name    *usermap();
 struct name    *verify();
 struct var     *lookup();
-unsigned       int     msize();
+long   transmit();
+int    icequal();
+int    cmpdomain();