Luna/libc/include/sys/mount.h
apio 73fbc37841
All checks were successful
continuous-integration/drone/pr Build is passing
kernel+libc+apps: Add a source parameter to the mount() system call
2023-06-20 19:40:58 +00:00

22 lines
387 B
C

/* 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. */
int mount(const char* target, const char* fstype, const char* source);
/* Unmount the file system mounted on target. */
int umount(const char* target);
#ifdef __cplusplus
}
#endif
#endif