Blame view

morfeusz/charset/conversion_tables.hpp 402 Bytes
Michał Lenart authored
1
2
3
4
5
6
7
8
9
10
/* 
 * File:   conversion_tables.hpp
 * Author: mlenart
 *
 * Created on December 4, 2013, 5:03 PM
 */

#ifndef CONVERSION_TABLES_HPP
#define	CONVERSION_TABLES_HPP
Michał Lenart authored
11
#include <inttypes.h>
Michał Lenart authored
12
Michał Lenart authored
13
14
namespace morfeusz {
Michał Lenart authored
15
extern const uint32_t WINDOWS_1250_TO_CODEPOINT[256];
Michał Lenart authored
16
extern const uint32_t ISO_8859_2_TO_CODEPOINT[256];
Michał Lenart authored
17
extern const uint32_t CP852_TO_CODEPOINT[256];
Michał Lenart authored
18
Michał Lenart authored
19
20
}
Michał Lenart authored
21
#endif	/* CONVERSION_TABLES_HPP */