blob: dc17f35d2fc94371120f889b15e0d4ef242f9821 (
plain)
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
57
58
59
60
61
62
63
|
#pragma once
#include <string>
namespace vcpkg {namespace Strings {namespace details
{
inline const char* to_printf_arg(const std::string& s)
{
return s.c_str();
}
inline const char* to_printf_arg(const char* s)
{
return s;
}
inline int to_printf_arg(const int s)
{
return s;
}
inline size_t to_printf_arg(const size_t s)
{
return s;
}
std::string format_internal(const char* fmtstr, ...);
inline const wchar_t* to_wprintf_arg(const std::wstring& s)
{
return s.c_str();
}
inline const wchar_t* to_wprintf_arg(const wchar_t* s)
{
return s;
}
std::wstring wformat_internal(const wchar_t* fmtstr, ...);
}}}
namespace vcpkg {namespace Strings
{
template <class...Args>
std::string format(const char* fmtstr, const Args&...args)
{
using vcpkg::Strings::details::to_printf_arg;
return details::format_internal(fmtstr, to_printf_arg(to_printf_arg(args))...);
}
template <class...Args>
std::wstring wformat(const wchar_t* fmtstr, const Args&...args)
{
using vcpkg::Strings::details::to_wprintf_arg;
return details::wformat_internal(fmtstr, to_wprintf_arg(to_wprintf_arg(args))...);
}
std::wstring utf8_to_utf16(const std::string& s);
std::string utf16_to_utf8(const std::wstring& w);
std::string::const_iterator case_insensitive_find(const std::string& s, const std::string& pattern);
}}
|