blob: c5ec9acb51e78cd739ad83f711b02ad0387d5fe0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "winapi-utf8" project.
// For details, see https://github.com/egor-tensin/winapi-utf8.
// Distributed under the MIT License.
/**
* @file
* @brief UTF-8 <-> UTF-16 conversion functions
*/
#pragma once
#include <cstddef>
#include <memory>
#include <string>
#include <vector>
namespace winapi {
/** Convert UTF-8 string to UTF-16. */
std::wstring widen(const std::string&);
/**
* Convert UTF-8 string to UTF-16.
* \param src Pointer to UTF-8 string.
* \param nb Number of bytes pointed to src.
*/
std::wstring widen(const void* src, std::size_t nb);
/**
* Convert UTF-8 string to UTF-16.
* \param src UTF-8 string.
*/
template <typename T, typename Alloc = std::allocator<T>>
std::wstring widen(const std::vector<T, Alloc>& src) {
return widen(src.data(), src.size() * sizeof(T));
}
/** Convert UTF-16 string to UTF-8. */
std::string narrow(const std::wstring&);
/**
* Convert UTF-16 string to UTF-8.
* \param src Pointer to UTF-16 string.
* \param nb Number of bytes pointed to by src.
*/
std::string narrow(const void* src, std::size_t nb);
/**
* Convert UTF-16 string to UTF-8.
* \param src UTF-16 string.
*/
template <typename T, typename Alloc = std::allocator<T>>
std::string narrow(const std::vector<T, Alloc>& src) {
return narrow(src.data(), src.size() * sizeof(T));
}
} // namespace winapi
|