Files
MentOS/mentos/inc/fs/ext2.h
T
Enrico Fraccaroli (Galfurian) 1b2bc49d41 Update license and remove unused files.
2022-01-27 15:12:36 -05:00

15 lines
371 B
C

/// @file ext2.h
/// @brief EXT2 driver.
/// @copyright (c) 2014-2022 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();