summaryrefslogtreecommitdiffstats
path: root/include/mount.h
blob: 5683e4784a856bf4ab3c95f75980200a69c65e2d (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _MOUNT_H__
#define _MOUNT_H__

char* is_mounted(char *block, char *path);
int mount_new(char *path, char *name);
int mount_remove(char *path, char *name);
void mount_dump_list(void);
void mount_init(void);

#endif