Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/include/mntent.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1122 - (show annotations) (download)
Wed Aug 18 21:11:40 2010 UTC (13 years, 8 months ago) by niro
File MIME type: text/plain
File size: 520 byte(s)
-updated to klibc-1.5.19
1 #ifndef _MNTENT_H
2 #define _MNTENT_H 1
3
4 struct mntent {
5 char *mnt_fsname; /* name of mounted file system */
6 char *mnt_dir; /* file system path prefix */
7 char *mnt_type; /* mount type (see mntent.h) */
8 char *mnt_opts; /* mount options (see mntent.h) */
9 int mnt_freq; /* dump frequency in days */
10 int mnt_passno; /* pass number on parallel fsck */
11 };
12
13 extern FILE *setmntent(const char *, const char *);
14
15 extern struct mntent *getmntent(FILE *);
16
17 extern int endmntent(FILE *fp);
18
19 #endif /* mntent.h */