#ifndef _ICONV_H #define _ICONV_H 1 #define _LIBICONV_VERSION 0x010B /* version number: (major<<8) + minor */ #include #ifdef __cplusplus extern "C" { #endif extern int _libiconv_version; /* Likewise */ typedef long iconv_t; extern iconv_t iconv_open(const char *tocode, const char *fromcode); extern size_t iconv(iconv_t cd, char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft); extern int iconv_close(iconv_t cd); #define libiconv_set_relocation_prefix(...) do {} while(0) #ifdef __cplusplus } #endif #endif /* _ICONV_H */ acv2/lede/master-31e0f0ae Git repository'/>
summaryrefslogtreecommitdiffstats
blob: 75bb315cc6d0adbee274c79e0740cfa3cdfd5dfa (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95