cmake/Source/kwsys/EncodingC.c

73 lines
1.6 KiB
C
Raw Normal View History

2017-04-14 19:02:05 +02:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing#kwsys for details. */
2014-08-03 19:52:23 +02:00
#include "kwsysPrivate.h"
#include KWSYS_HEADER(Encoding.h)
/* Work-around CMake dependency scanning limitation. This must
duplicate the above list of headers. */
#if 0
2018-08-09 18:06:22 +02:00
# include "Encoding.h.in"
2014-08-03 19:52:23 +02:00
#endif
#include <stdlib.h>
#ifdef _WIN32
2018-08-09 18:06:22 +02:00
# include <windows.h>
2014-08-03 19:52:23 +02:00
#endif
size_t kwsysEncoding_mbstowcs(wchar_t* dest, const char* str, size_t n)
{
2017-04-14 19:02:05 +02:00
if (str == 0) {
2014-08-03 19:52:23 +02:00
return (size_t)-1;
2017-04-14 19:02:05 +02:00
}
2014-08-03 19:52:23 +02:00
#ifdef _WIN32
2017-04-14 19:02:05 +02:00
return MultiByteToWideChar(KWSYS_ENCODING_DEFAULT_CODEPAGE, 0, str, -1, dest,
(int)n) -
1;
2014-08-03 19:52:23 +02:00
#else
return mbstowcs(dest, str, n);
#endif
}
wchar_t* kwsysEncoding_DupToWide(const char* str)
{
wchar_t* ret = NULL;
size_t length = kwsysEncoding_mbstowcs(NULL, str, 0) + 1;
2017-04-14 19:02:05 +02:00
if (length > 0) {
ret = (wchar_t*)malloc((length) * sizeof(wchar_t));
if (ret) {
2015-11-17 17:22:37 +01:00
ret[0] = 0;
kwsysEncoding_mbstowcs(ret, str, length);
2014-08-03 19:52:23 +02:00
}
2017-04-14 19:02:05 +02:00
}
2014-08-03 19:52:23 +02:00
return ret;
}
size_t kwsysEncoding_wcstombs(char* dest, const wchar_t* str, size_t n)
{
2017-04-14 19:02:05 +02:00
if (str == 0) {
2014-08-03 19:52:23 +02:00
return (size_t)-1;
2017-04-14 19:02:05 +02:00
}
2014-08-03 19:52:23 +02:00
#ifdef _WIN32
2017-04-14 19:02:05 +02:00
return WideCharToMultiByte(KWSYS_ENCODING_DEFAULT_CODEPAGE, 0, str, -1, dest,
(int)n, NULL, NULL) -
1;
2014-08-03 19:52:23 +02:00
#else
return wcstombs(dest, str, n);
#endif
}
char* kwsysEncoding_DupToNarrow(const wchar_t* str)
{
char* ret = NULL;
2021-09-14 00:13:48 +02:00
size_t length = kwsysEncoding_wcstombs(NULL, str, 0) + 1;
2017-04-14 19:02:05 +02:00
if (length > 0) {
2015-04-27 22:25:09 +02:00
ret = (char*)malloc(length);
2017-04-14 19:02:05 +02:00
if (ret) {
2015-11-17 17:22:37 +01:00
ret[0] = 0;
kwsysEncoding_wcstombs(ret, str, length);
2014-08-03 19:52:23 +02:00
}
2017-04-14 19:02:05 +02:00
}
2014-08-03 19:52:23 +02:00
return ret;
}