filesystem mount options in uci as optional parameter
[project/mountd.git] / include / mount.h
1 #ifndef _MOUNT_H__
2 #define _MOUNT_H__
3
4 char* is_mounted(char *block, char *path);
5 int mount_new(char *path, char *name);
6 int mount_remove(char *path, char *name);
7 void mount_dump_list(void);
8 void mount_init(void);
9
10 #endif