2011-08-12 00:25:59 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-08-12 00:25:59 +10:00
|
|
|
*
|
2017-08-01 14:16:55 +10:00
|
|
|
* Copyright 2011-2017 Danny Robson <danny@nerdcruft.net>
|
2011-08-12 00:25:59 +10:00
|
|
|
*/
|
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "string.hpp"
|
2011-08-12 00:25:59 +10:00
|
|
|
|
2016-02-26 12:11:26 +11:00
|
|
|
#include <cstring>
|
2016-11-22 21:48:57 +11:00
|
|
|
#include <codecvt>
|
|
|
|
#include <locale>
|
2013-08-05 16:41:20 +10:00
|
|
|
|
2016-11-22 21:48:57 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::to_utf8 (const wchar_t *src)
|
2016-11-22 21:48:57 +11:00
|
|
|
{
|
|
|
|
using convert_t = std::codecvt_utf8<wchar_t>;
|
|
|
|
std::wstring_convert<convert_t,wchar_t> converter;
|
|
|
|
return converter.to_bytes (src);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
std::string
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::to_utf8 (const std::wstring &src)
|
2016-11-22 21:48:57 +11:00
|
|
|
{
|
|
|
|
return to_utf8 (src.c_str ());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-17 18:13:19 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-08-12 00:25:59 +10:00
|
|
|
// TODO: Horribly inefficient, but God help you if you're relying on this
|
|
|
|
// being efficient in the first place.
|
|
|
|
bool
|
|
|
|
strbegins (const char *restrict str,
|
|
|
|
const char *restrict prefix) {
|
|
|
|
return 0 == strncmp (prefix, str, strlen (prefix));
|
|
|
|
}
|