Files
MentOS/mentos/inc/fs/ext2.h
T
2022-01-03 22:25:21 +01:00

15 lines
371 B
C

/// @file ext2.h
/// @brief EXT2 driver.
/// @copyright (c) 2014-2021 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#pragma once
/// @brief Initializes the EXT2 drivers.
/// @return 0 on success, 1 on error.
int ext2_initialize();
/// @brief De-initializes the EXT2 drivers.
/// @return 0 on success, 1 on error.
int ext2_finalize();