6 * This file contains cp1251 decoding function that is needed to read
7 * cp1251 encoded mails in non-cp1251 locale.
9 * Original data taken from:
10 * ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1250.TXT
12 * Name: cp1251 to Unicode table
13 * Unicode version: 2.0
15 * Table format: Format A
17 * Contact: cpxlate@microsoft.com
19 * @copyright © 2003-2006 The SquirrelMail Project Team
20 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
22 * @package squirrelmail
27 * Decode cp1251-encoded string
28 * @param string $string Encoded string
29 * @return string $string Decoded string
31 function charset_decode_cp1251 ($string) {
32 // don't do decoding when there are no 8bit symbols
33 if (! sq_is8bit($string,'windows-1251'))
167 $string = str_replace(array_keys($cp1251), array_values($cp1251), $string);