1 /* 2 * Copyright (c) 2023 Antmicro 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __TESTS_FS_EXT2_UTILS_H__ 8 #define __TESTS_FS_EXT2_UTILS_H__ 9 10 extern struct fs_mount_t testfs_mnt; 11 12 int wipe_partition(uintptr_t id); 13 size_t get_partition_size(uintptr_t id); 14 15 #endif /* __TESTS_FS_EXT2_UTILS_H__ */ 16