]>
Commit | Line | Data |
---|---|---|
937356ff A |
1 | // |
2 | // sparse_test.h | |
3 | // copyfile_test | |
4 | // | |
5 | ||
6 | #ifndef sparse_test_h | |
7 | #define sparse_test_h | |
8 | ||
23896e53 A |
9 | #include <stdbool.h> |
10 | #include <stdlib.h> | |
11 | ||
937356ff A |
12 | bool do_sparse_test(const char *apfs_test_directory, size_t block_size); |
13 | bool do_sparse_recursive_test(const char *apfs_test_directory, size_t block_size); | |
14 | bool do_fcopyfile_offset_test(const char *apfs_test_directory, size_t block_size); | |
15 | ||
16 | #endif /* sparse_test_h */ |