added hash structure (ignore) to remember list of ignored fields.
authorKurt A. Shoens <kurt@ucbvax.Berkeley.EDU>
Thu, 29 Jul 1982 14:12:34 +0000 (06:12 -0800)
committerKurt A. Shoens <kurt@ucbvax.Berkeley.EDU>
Thu, 29 Jul 1982 14:12:34 +0000 (06:12 -0800)
SCCS-vsn: usr.bin/mail/def.h 2.7

usr/src/usr.bin/mail/def.h

index 5049895..39f1bf9 100644 (file)
@@ -10,7 +10,7 @@
 #undef isdigit
 
 /*
 #undef isdigit
 
 /*
- * Sccs Id = "@(#)def.h        2.6 %G%";
+ * Sccs Id = "@(#)def.h        2.7 %G%";
  */
 
 /*
  */
 
 /*
@@ -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.