Luna/libc/include/sys/mount.h
apio 1f4c4928cc
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc+apps: Add mount and umount syscalls, libc wrappers, and utilities
2023-05-17 20:30:15 +02:00

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