blob: 1c6504ec0d5e4b13bf98fd7d3de75a0b7466e740 [file] [log] [blame]
// Copyright 2016 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 LIB_FXL_STRINGS_CONCATENATE_H_
#define LIB_FXL_STRINGS_CONCATENATE_H_
#include <initializer_list>
#include <string>
#include "src/lib/fxl/fxl_export.h"
#include "src/lib/fxl/strings/string_view.h"
namespace fxl {
// Concatenates a fixed list of strings.
std::string Concatenate(std::initializer_list<fxl::StringView> string_views);
} // namespace fxl
#endif // LIB_FXL_STRINGS_CONCATENATE_H_