HEX
Server: nginx/1.18.0
System: Linux mail.dakarash.co.id 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
User: www-data (33)
PHP: 8.1.2-1ubuntu2.23
Disabled: NONE
Upload Files
File: //home/django/libpff/pypff/pypff_codepage.c
/*
 * Codepage functions
 *
 * Copyright (C) 2008-2024, Joachim Metz <joachim.metz@gmail.com>
 *
 * Refer to AUTHORS for acknowledgements.
 *
 * This program 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 program 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 program.  If not, see <https://www.gnu.org/licenses/>.
 */

#include <common.h>
#include <types.h>

#include "pypff_codepage.h"
#include "pypff_libpff.h"

/* Returns a string representation of the codepage
 * Codecs and aliases are defined: http://docs.python.org/library/codecs.html#standard-encodings
 * Returns 1 if successful or NULL if codepage is not supported
 */
const char *pypff_codepage_to_string(
             int codepage )
{
	switch( codepage )
	{
		case LIBPFF_CODEPAGE_ASCII:
			return( "ascii" );

		case LIBPFF_CODEPAGE_ISO_8859_1:
			return( "iso-8859-1" );

		case LIBPFF_CODEPAGE_ISO_8859_2:
			return( "iso-8859-2" );

		case LIBPFF_CODEPAGE_ISO_8859_3:
			return( "iso-8859-3" );

		case LIBPFF_CODEPAGE_ISO_8859_4:
			return( "iso-8859-4" );

		case LIBPFF_CODEPAGE_ISO_8859_5:
			return( "iso-8859-5" );

		case LIBPFF_CODEPAGE_ISO_8859_6:
			return( "iso-8859-6" );

		case LIBPFF_CODEPAGE_ISO_8859_7:
			return( "iso-8859-7" );

		case LIBPFF_CODEPAGE_ISO_8859_8:
			return( "iso-8859-8" );

		case LIBPFF_CODEPAGE_ISO_8859_9:
			return( "iso-8859-9" );

		case LIBPFF_CODEPAGE_ISO_8859_10:
			return( "iso-8859-10" );

		case LIBPFF_CODEPAGE_ISO_8859_11:
			return( "iso-8859-11" );

		case LIBPFF_CODEPAGE_ISO_8859_13:
			return( "iso-8859-13" );

		case LIBPFF_CODEPAGE_ISO_8859_14:
			return( "iso-8859-14" );

		case LIBPFF_CODEPAGE_ISO_8859_15:
			return( "iso-8859-15" );

		case LIBPFF_CODEPAGE_ISO_8859_16:
			return( "iso-8859-16" );

		case LIBPFF_CODEPAGE_KOI8_R:
			return( "koi8_r" );

		case LIBPFF_CODEPAGE_KOI8_U:
			return( "koi8_u" );

		case LIBPFF_CODEPAGE_WINDOWS_874:
			return( "cp874" );

		case LIBPFF_CODEPAGE_WINDOWS_932:
			return( "cp932" );

		case LIBPFF_CODEPAGE_WINDOWS_936:
			return( "cp936" );

		case LIBPFF_CODEPAGE_WINDOWS_949:
			return( "cp949" );

		case LIBPFF_CODEPAGE_WINDOWS_950:
			return( "cp950" );

		case LIBPFF_CODEPAGE_WINDOWS_1250:
			return( "cp1250" );

		case LIBPFF_CODEPAGE_WINDOWS_1251:
			return( "cp1251" );

		case LIBPFF_CODEPAGE_WINDOWS_1252:
			return( "cp1252" );

		case LIBPFF_CODEPAGE_WINDOWS_1253:
			return( "cp1253" );

		case LIBPFF_CODEPAGE_WINDOWS_1254:
			return( "cp1254" );

		case LIBPFF_CODEPAGE_WINDOWS_1255:
			return( "cp1255" );

		case LIBPFF_CODEPAGE_WINDOWS_1256:
			return( "cp1256" );

		case LIBPFF_CODEPAGE_WINDOWS_1257:
			return( "cp1257" );

		case LIBPFF_CODEPAGE_WINDOWS_1258:
			return( "cp1258" );

		default:
			break;
	}
	return( NULL );
}