~ruther/CTU-FEE-B0B35APO-Semestral-project

ref: deff0227a3d5004e863c2005fa0bf02183809dfb CTU-FEE-B0B35APO-Semestral-project/file-browser/include/device_mount.h -rw-r--r-- 312 bytes
deff0227 — František Boháček feat: implement device mount using system 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __MOUNT_UTILS_H__
#define __MOUNT_UTILS_H__

#include <sys/mount.h>
#include "file_access.h"

file_operation_error_t device_mount(char *device, char *target);
file_operation_error_t device_umount(char *device, char *target);

char *device_mount_get_filesystem(char *device);

#endif // __MOUNT_UTILS_H__
Do not follow this link