1 /*
2  * Copyright 2006-2008 The FLWOR Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef ZORBA_FULL_TEXT_UTF8_CHARS_H
18 #define ZORBA_FULL_TEXT_UTF8_CHARS_H
19 
20 //
21 // UTF-8 byte sequences for ISO 8859-1 characters.
22 //
23 #define aacute  "\xC3\xA1"
24 #define acirc   "\xC3\xA2"
25 #define aelig   "\xC3\xA6"
26 #define agrave  "\xC3\xA0"
27 #define aring   "\xC3\xA5"
28 #define atilde  "\xC3\xA3"
29 #define auml    "\xC3\xA4"
30 #define eacute  "\xC3\xA9"
31 #define ecirc   "\xC3\xAA"
32 #define egrave  "\xC3\xA8"
33 #define iacute  "\xC3\xAD"
34 #define oacute  "\xC3\xB3"
35 #define ocirc   "\xC3\xB4"
36 #define ograve  "\xC3\xB2"
37 #define oslash  "\xC3\xB8"
38 #define otilde  "\xC3\xB5"
39 #define ouml    "\xC3\xB6"
40 #define szlig   "\xC3\x9F"
41 #define uacute  "\xC3\xBA"
42 #define ucirc   "\xC3\xBB"
43 #define ugrave  "\xC3\xB9"
44 #define uuml    "\xC3\xBC"
45 
46 #endif /* ZORBA_FULL_TEXT_UTF8_CHARS_H */
47 /* vim:set et sw=2 ts=2: */
48