1# idn2.map - linker version script for idn2
2# Copyright (C) 2011-2021 Simon Josefsson
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17IDN2_0.0.0 {
18  global:
19    idn2_check_version;
20
21    idn2_free;
22
23    idn2_lookup_u8;
24    idn2_register_u8;
25
26    idn2_lookup_ul;
27    idn2_decode_ul;
28    idn2_register_ul;
29
30    idn2_to_ascii_4i;
31    idn2_to_ascii_4z;
32    idn2_to_ascii_8z;
33    idn2_to_ascii_lz;
34
35    idn2_to_unicode_8z4z;
36    idn2_to_unicode_4z4z;
37    idn2_to_unicode_44i;
38    idn2_to_unicode_8z8z;
39    idn2_to_unicode_8zlz;
40    idn2_to_unicode_lzlz;
41
42    idn2_strerror;
43    idn2_strerror_name;
44
45    # Compatibility symbols.
46    _idn2_punycode_encode;
47    _idn2_punycode_decode;
48
49  local:
50    *;
51};
52
53IDN2_2.1.0 {
54  global:
55    idn2_to_ascii_4i2;
56} IDN2_0.0.0;
57