blob: 66c0d9f02f6720dec127ddb6692e3fb2610f7425 [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 <memory>
#include <blobfs/host/fsck.h>
#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