blob: 6480b3233ab8df13be1e9b60eeffae25fa4087d5 [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 BLOBFS_FSCK_H_
#define BLOBFS_FSCK_H_
#include <blobfs/mount.h>
#include <block-client/cpp/block-device.h>
namespace blobfs {
zx_status_t Fsck(std::unique_ptr<block_client::BlockDevice> device, MountOptions* options);
} // namespace blobfs
#endif // BLOBFS_FSCK_H_