2023-05-17 18:30:15 +00:00
|
|
|
/* sys/mount.h: Virtual file system mounting operations. */
|
|
|
|
|
|
|
|
#ifndef _SYS_MOUNT_H
|
|
|
|
#define _SYS_MOUNT_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Mount a file system on target. */
|
2023-06-20 19:39:41 +00:00
|
|
|
int mount(const char* target, const char* fstype, const char* source);
|
2023-05-17 18:30:15 +00:00
|
|
|
|
|
|
|
/* Unmount the file system mounted on target. */
|
|
|
|
int umount(const char* target);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|