| // Copyright 2013 The Flutter 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 FLUTTER_FML_PLATFORM_WIN_WSTRING_CONVERSION_H_ |
| #define FLUTTER_FML_PLATFORM_WIN_WSTRING_CONVERSION_H_ |
| |
| #include <string> |
| |
| namespace fml { |
| |
| // Returns a UTF-8 encoded equivalent of a UTF-16 encoded input wide string. |
| std::string WideStringToUtf8(const std::wstring_view str); |
| |
| // Returns a UTF-16 encoded wide string equivalent of a UTF-8 encoded input |
| // string. |
| std::wstring Utf8ToWideString(const std::string_view str); |
| |
| } // namespace fml |
| |
| #endif // FLUTTER_FML_PLATFORM_WIN_WSTRING_CONVERSION_H_ |