Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
mntent.h
Go to the documentation of this file.
1 
4 #ifndef _TENOK_MNTENT_H
5 #define _TENOK_MNTENT_H
6 
7 #include <stdio.h>
8 
9 struct mntent {
10  char *mnt_fsname;
11  char *mnt_dir;
12  char *mnt_type;
13  char *mnt_opts;
14  int mnt_freq;
15  int mnt_passno;
16 };
17 
18 FILE *setmntent(const char *file, const char *mode);
19 struct mntent *getmntent(FILE *stream);
20 int endmntent(FILE *stream);
21 
22 #endif
Definition: fs.h:136
Definition: mntent.h:9
Definition: stdio.h:74