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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/*
* Codepage functions
*
* Copyright (C) 2009-2018, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This software is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software. If not, see <http://www.gnu.org/licenses/>.
*/
#include <common.h>
#include <memory.h>
#include <types.h>
#include "libfmapi_codepage.h"
#if defined( HAVE_DEBUG_OUTPUT )
libfmapi_codepage_t libfmapi_codepages[ ] = {
{ 874, "windows-874", "Thai" },
{ 932, "iso-2022-jp", "Japanese (Shift-JIS)" },
{ 936, "gb2312", "Chinese Simplified" },
{ 949, "ks_c_5601-1987", "Korean" },
{ 950, "big5", "Chinese Traditional" },
{ 1200, "unicode", "Unicode" },
{ 1250, "windows-1250", "Central European" },
{ 1251, "windows-1251", "Cyrillic" },
{ 1252, "windows-1252", "Western European" },
{ 1253, "windows-1253", "Greek" },
{ 1254, "windows-1254", "Turkish" },
{ 1255, "windows-1255", "Hebrew" },
{ 1256, "windows-1256", "Arabic" },
{ 1257, "windows-1257", "Baltic" },
{ 1258, "windows-1258", "Vietnamese" },
{ 20127, "us-ascii", "7-bit American Standard Code for Information Interchange (ASCII)" },
{ 20866, "koi8-r", "Cyrillic" },
{ 21866, "koi8-u", "Cyrillic" },
{ 28591, "iso-8859-1", "Western European" },
{ 28592, "iso-8859-2", "Central European" },
{ 28593, "iso-8859-3", "Latin 3 " },
{ 28594, "iso-8859-4", "Baltic" },
{ 28595, "iso-8859-5", "Cyrillic" },
{ 28596, "iso-8859-6", "Arabic" },
{ 28597, "iso-8859-7", "Greek" },
{ 28598, "iso-8859-8-i", "Hebrew" },
{ 28599, "iso-8859-7", "Turkish" },
{ 28605, "iso-8859-15", "Latin 9 " },
{ 50220, "iso-2022-jp", "Japanese (JIS)" },
{ 50221, "csISO2022JP", "Japanese (JIS-Allow 1 byte Kana)" },
{ 51932, "euc-jp", "Japanese" },
{ 51949, "euc-kr", "Korean" },
{ 52936, "hz-gb-2312", "Chinese Simplified" },
{ 65000, "utf-7", "7-bit Unicode Transformation Format (UTF-7)" },
{ 65001, "utf-8", "8-bit Unicode Transformation Format (UTF-8)" },
{ (uint32_t) -1, "_UNKNOWN_", "Unknown" } };
/* Retrieves a string containing the codepage identifier
*/
const char *libfmapi_codepage_get_identifier(
uint32_t codepage )
{
int iterator = 0;
while( ( libfmapi_codepages[ iterator ] ).codepage != (uint32_t) -1 )
{
if( ( libfmapi_codepages[ iterator ] ).codepage == codepage )
{
break;
}
iterator++;
}
return(
( libfmapi_codepages[ iterator ] ).identifier );
}
/* Retrieves a string containing the codepage description
*/
const char *libfmapi_codepage_get_description(
uint32_t codepage )
{
int iterator = 0;
while( ( libfmapi_codepages[ iterator ] ).codepage != (uint32_t) -1 )
{
if( ( libfmapi_codepages[ iterator ] ).codepage == codepage )
{
break;
}
iterator++;
}
return(
( libfmapi_codepages[ iterator ] ).description );
}
#endif
|