forked from therion/therion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thchenc.h
74 lines (55 loc) · 1.69 KB
/
thchenc.h
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
/**
* @file thinput.h
* Therion character encoding module.
*/
/* Copyright (C) 2000 Stacho Mudrak
*
* $Date: $
* $RCSfile: $
* $Revision: $
*
* --------------------------------------------------------------------
* 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
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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
* --------------------------------------------------------------------
*/
#ifndef thchenc_h
#define thchenc_h
#include "thchencdata.h"
#include "thbuffer.h"
/**
* Encode given string into UTF-8 internal encoding.
*
* @param dest Destination buffer.
* @param src Source string.
* @param srcenc Source encoding.
*/
void thencode(thbuffer * dest, const char * src, int srcenc);
/**
* Decode give string from internal UTF-8 encoding to some external.
*
* @param dest Destination buffer.
* @param destenc Destination encoding.
* @param src Source string.
*/
void thdecode(thbuffer * dest, int destenc, const char * src);
/**
* Writes supported encodings into output.
*/
void thprint_encodings();
/**
* Parse encoding.
*/
int thparse_encoding(char * encstr);
#endif