BSD 4_3_Net_2 release
[unix-history] / usr / src / usr.sbin / mtree / mtree.h
index 30e5a91..9dd416e 100644 (file)
@@ -2,9 +2,35 @@
  * Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
  *
  * Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
  *
- * %sccs.include.redist.c%
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *     This product includes software developed by the University of
+ *     California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
  *
  *
- *     @(#)mtree.h     5.6 (Berkeley) %G%
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ *     @(#)mtree.h     5.7 (Berkeley) 5/25/90
  */
 
 #include <string.h>
  */
 
 #include <string.h>
@@ -14,6 +40,7 @@ typedef struct _node {
        struct _node    *parent, *child;        /* up, down */
        struct _node    *prev, *next;           /* left, right */
        off_t   st_size;                        /* size */
        struct _node    *parent, *child;        /* up, down */
        struct _node    *prev, *next;           /* left, right */
        off_t   st_size;                        /* size */
+       time_t  st_mtime;                       /* last modification time */
        u_long  cksum;                          /* check sum */
        char    *slink;                         /* symbolic link reference */
        uid_t   st_uid;                         /* owner */
        u_long  cksum;                          /* check sum */
        char    *slink;                         /* symbolic link reference */
        uid_t   st_uid;                         /* owner */
@@ -31,18 +58,19 @@ typedef struct _node {
 #define        F_SOCK  0x040                           /* socket */
        u_short type;                           /* file type */
 
 #define        F_SOCK  0x040                           /* socket */
        u_short type;                           /* file type */
 
-#define        F_CKSUM 0x001                           /* check sum */
-#define        F_DONE  0x002                           /* directory done */
-#define        F_GROUP 0x004                           /* group */
-#define        F_IGN   0x008                           /* ignore */
-#define        F_MAGIC 0x010                           /* name has magic chars */
-#define        F_MODE  0x020                           /* mode */
-#define        F_NLINK 0x040                           /* number of links */
-#define        F_OWNER 0x080                           /* owner */
-#define        F_SIZE  0x100                           /* size */
-#define        F_SLINK 0x200                           /* link count */
-#define        F_TYPE  0x400                           /* file type */
-#define        F_VISIT 0x800                           /* file visited */
+#define        F_CKSUM 0x0001                          /* check sum */
+#define        F_DONE  0x0002                          /* directory done */
+#define        F_GROUP 0x0004                          /* group */
+#define        F_IGN   0x0008                          /* ignore */
+#define        F_MAGIC 0x0010                          /* name has magic chars */
+#define        F_MODE  0x0020                          /* mode */
+#define        F_NLINK 0x0040                          /* number of links */
+#define        F_OWNER 0x0080                          /* owner */
+#define        F_SIZE  0x0100                          /* size */
+#define        F_SLINK 0x0200                          /* link count */
+#define        F_TIME  0x0400                          /* modification time */
+#define        F_TYPE  0x0800                          /* file type */
+#define        F_VISIT 0x1000                          /* file visited */
        u_short flags;                          /* items set */
 
        char    name[1];                        /* file name (must be last) */
        u_short flags;                          /* items set */
 
        char    name[1];                        /* file name (must be last) */