summaryrefslogtreecommitdiff
path: root/include/rbunicode.h
blob: cecd9d780b402c0543a38f051c7b8a28305d7f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/***************************************************************************
 * Copyright (c) 2004,2005 by Marcoen Hirschberg
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************
 * Source file dumped from rockbox-3.1 distribution.
 * $Id: rbunicode.h 19339 2008-12-04 22:00:12Z zagor $
 * Copyright (c) 2004,2005 by Marcoen Hirschberg
 *
 * See file CREDITS for list of people who contributed to the U-boot 
 * project.
 *
 ****************************************************************************
 * Some conversion functions for handling UTF-8
 *
 *   I got all the info from:
 *   http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
 *   and
 *   http://en.wikipedia.org/wiki/Unicode
 ****************************************************************************
 * 09-jan-2008 etienne.carriere@stnwireless.com - port from rockbox to U-boot
 ****************************************************************************
 */
#ifndef _RBUNICODE_H_
#define _RBUNICODE_H_
 
/* not applicable for u-boot
 * #ifndef __PCTOOL__
 * #include "config.h"
 * #endif
 */

#define MASK   0xC0 /* 11000000 */
#define COMP   0x80 /* 10x      */

#ifdef HAVE_LCD_BITMAP
 
enum codepages {
    ISO_8859_1 = 0, ISO_8859_7, ISO_8859_8, WIN_1251,
    ISO_8859_11, WIN_1256, ISO_8859_9, ISO_8859_2, WIN_1250,
    SJIS, GB_2312, KSX_1001, BIG_5, UTF_8, NUM_CODEPAGES
};

#else /* !HAVE_LCD_BITMAP, reduced support */

enum codepages {
    ISO_8859_1 = 0, ISO_8859_7, WIN_1251, ISO_8859_9,
    ISO_8859_2, WIN_1250, UTF_8, NUM_CODEPAGES
};

#endif

/* Encode a UCS value as UTF-8 and return a pointer after this UTF-8 char. */
unsigned char* utf8encode(unsigned long ucs, unsigned char *utf8);
unsigned char* iso_decode(const unsigned char *latin1, unsigned char *utf8, int cp, int count);
unsigned char* utf16LEdecode(const unsigned char *utf16, unsigned char *utf8, int count);
unsigned char* utf16BEdecode(const unsigned char *utf16, unsigned char *utf8, int count);
unsigned long utf8length(const unsigned char *utf8);
const unsigned char* utf8decode(const unsigned char *utf8, unsigned short *ucs);
void set_codepage(int cp);
int utf8seek(const unsigned char* utf8, int offset);
const char* get_codepage_name(int cp);
#endif /* _RBUNICODE_H_ */