blob: 5e397a3190c2356edc0d0490824e44cc9c481c47 [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.
#include "src/storage/blobfs/fsck-host.h"
#include <memory>
#include "src/storage/blobfs/blobfs-checker.h"
namespace blobfs {
zx_status_t Fsck(std::unique_ptr<Blobfs> blob) { return BlobfsChecker(std::move(blob)).Check(); }
} // namespace blobfs