blob: 0356b901bc0bad8672aea4963d822300c7604df9 [file] [log] [blame]
// Copyright 2020 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.
#ifndef SRC_STORAGE_FACTORY_FACTORYFS_MKFS_H_
#define SRC_STORAGE_FACTORY_FACTORYFS_MKFS_H_
#include "src/lib/storage/block_client/cpp/block_device.h"
namespace factoryfs {
// Formats the underlying device with an empty Factoryfs partition.
zx_status_t FormatFilesystem(block_client::BlockDevice* device);
} // namespace factoryfs
#endif // SRC_STORAGE_FACTORY_FACTORYFS_MKFS_H_