1/*
2 * Copyright 2018 Kacper Kasper <kacperkasper@gmail.com>
3 * All rights reserved. Distributed under the terms of the MIT license.
4 */
5#ifndef _KERNEL_VM_UTILS_H
6#define _KERNEL_VM_UTILS_H
7
8
9#include <disk_device_manager/KPartition.h>
10#include <fs/KPath.h>
11
12
13status_t
14get_mount_point(KPartition* partition, KPath* mountPoint);
15
16
17#endif // _KERNEL_VM_UTILS_H
18