#ifndef FS_TEST_H
#define FS_TEST_H
#include "fs-api-private.h"
struct test_fs {
};
struct test_fs_file {
void *async_context;
bool prefetched;
bool locked;
bool exists;
bool seekable;
bool closed;
bool io_failure;
bool wait_async;
};
struct test_fs_iter {
bool failed;
};
#endif