date and time created 83/05/03 13:47:58 by sam
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Wed, 4 May 1983 04:47:58 +0000 (20:47 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Wed, 4 May 1983 04:47:58 +0000 (20:47 -0800)
SCCS-vsn: include/fstab.h 4.1

usr/src/include/fstab.h [new file with mode: 0644]

diff --git a/usr/src/include/fstab.h b/usr/src/include/fstab.h
new file mode 100644 (file)
index 0000000..7651b2e
--- /dev/null
@@ -0,0 +1,38 @@
+/*     fstab.h 4.1     83/05/03        */
+
+/*
+ * File system table, see fstab (5)
+ *
+ * Used by dump, mount, umount, swapon, fsck, df, ...
+ *
+ * The fs_spec field is the block special name.
+ * Programs that want to use the character special name must
+ * create that name by prepending a 'r' after the right most slash.
+ */
+
+#define        FSTAB           "/etc/fstab"
+#define        FSNMLG          32
+
+#define        FSTABFMT        "%32s:%32s:%2s:%d:%d\n"
+#define        FSTABARG(p)     (p)->fs_spec, (p)->fs_file, \
+                       (p)->fs_type, &(p)->fs_freq, &(p)->fs_passno
+#define FSTABNARGS     5
+
+#define        FSTAB_RW        "rw"    /* read write device */
+#define        FSTAB_RO        "ro"    /* read only device */
+#define        FSTAB_SW        "sw"    /* swap device */
+#define        FSTAB_XX        "xx"    /* ignore totally */
+
+struct fstab{
+       char    fs_spec[FSNMLG];        /* block special device name */
+       char    fs_file[FSNMLG];        /* file system path prefix */
+       char    fs_type[3];             /* rw,ro,sw or xx */
+       int     fs_freq;                /* dump frequency, in days */
+       int     fs_passno;              /* pass number on parallel dump */
+};
+
+struct fstab *getfsent();
+struct fstab *getfsspec();
+struct fstab *getfsfile();
+int    setfsent();
+int    endfsent();