version 1.1.1.2, 2012/05/29 09:29:43
|
version 1.1.1.3, 2021/03/17 13:38:46
|
Line 1
|
Line 1
|
/* |
/* |
* Copyright (C) 1999-2008, 2011 Free Software Foundation, Inc. | * Copyright (C) 1999-2008, 2011, 2018 Free Software Foundation, Inc. |
* This file is part of the GNU LIBICONV Library. |
* This file is part of the GNU LIBICONV Library. |
* |
* |
* The GNU LIBICONV Library is free software; you can redistribute it |
* The GNU LIBICONV Library is free software; you can redistribute it |
Line 14
|
Line 14
|
* |
* |
* You should have received a copy of the GNU Library General Public |
* You should have received a copy of the GNU Library General Public |
* License along with the GNU LIBICONV Library; see the file COPYING.LIB. |
* License along with the GNU LIBICONV Library; see the file COPYING.LIB. |
* If not, write to the Free Software Foundation, Inc., 51 Franklin Street, | * If not, see <https://www.gnu.org/licenses/>. |
* Fifth Floor, Boston, MA 02110-1301, USA. | |
*/ |
*/ |
|
|
/* Part 1 of iconv_open. |
/* Part 1 of iconv_open. |
Line 99
|
Line 98
|
/* On systems which define __STDC_ISO_10646__, wchar_t is Unicode. |
/* On systems which define __STDC_ISO_10646__, wchar_t is Unicode. |
This is also the case on native Woe32 systems and Cygwin >= 1.7, where |
This is also the case on native Woe32 systems and Cygwin >= 1.7, where |
we know that it is UTF-16. */ |
we know that it is UTF-16. */ |
#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || (defined __CYGWIN__ && CYGWIN_VERSION_DLL_MAJOR >= 1007) | #if (defined _WIN32 && !defined __CYGWIN__) || (defined __CYGWIN__ && CYGWIN_VERSION_DLL_MAJOR >= 1007) |
if (sizeof(wchar_t) == 4) { |
if (sizeof(wchar_t) == 4) { |
to_index = ei_ucs4internal; |
to_index = ei_ucs4internal; |
break; |
break; |
Line 189
|
Line 188
|
/* On systems which define __STDC_ISO_10646__, wchar_t is Unicode. |
/* On systems which define __STDC_ISO_10646__, wchar_t is Unicode. |
This is also the case on native Woe32 systems and Cygwin >= 1.7, where |
This is also the case on native Woe32 systems and Cygwin >= 1.7, where |
we know that it is UTF-16. */ |
we know that it is UTF-16. */ |
#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || (defined __CYGWIN__ && CYGWIN_VERSION_DLL_MAJOR >= 1007) | #if (defined _WIN32 && !defined __CYGWIN__) || (defined __CYGWIN__ && CYGWIN_VERSION_DLL_MAJOR >= 1007) |
if (sizeof(wchar_t) == 4) { |
if (sizeof(wchar_t) == 4) { |
from_index = ei_ucs4internal; |
from_index = ei_ucs4internal; |
break; |
break; |