Blame view

morfeusz/case/caseconv.hpp 625 Bytes
Michał Lenart authored
1
2
3
4
5
6
7
8
9
10
/* 
 * File:   caseconv.hpp
 * Author: mlenart
 *
 * Created on 25 listopad 2013, 16:48
 */

#ifndef CASECONV_HPP
#define	CASECONV_HPP
Michał Lenart authored
11
12
namespace morfeusz {
Michał Lenart authored
13
14
15
16
/*
 * Case conversion tables
 */
Michał Lenart authored
17
18
19
20
21
22
23
24
25
extern const unsigned int TO_LOWERCASE_TABLE_SIZE;
extern const unsigned int EXT_TO_LOWERCASE_TABLE_SIZE;
extern const uint32_t TO_LOWERCASE_TABLE[];
extern const uint32_t EXT_TO_LOWERCASE_TABLE[][2];
extern const unsigned int TO_TITLECASE_TABLE_SIZE;
extern const unsigned int EXT_TO_TITLECASE_TABLE_SIZE;
extern const uint32_t TO_TITLECASE_TABLE[];
extern const uint32_t EXT_TO_TITLECASE_TABLE[][2];
Michał Lenart authored
26
27
}
Michał Lenart authored
28
29
#endif	/* CASECONV_HPP */