blob: 6a245964244bae58dd67b6a6a1dd0778492a4650 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file contains functionality for checking the consistency of Blobfs.
#ifndef SRC_STORAGE_BLOBFS_FSCK_H_
#define SRC_STORAGE_BLOBFS_FSCK_H_
#include "src/storage/blobfs/mount.h"
#include "src/storage/lib/block_client/cpp/block_device.h"
namespace blobfs {
zx_status_t Fsck(std::unique_ptr<block_client::BlockDevice> device, const MountOptions& options);
} // namespace blobfs
#endif // SRC_STORAGE_BLOBFS_FSCK_H_