1 | //======================================================================== |
2 | // |
3 | // UnicodeMapFuncs.h |
4 | // |
5 | // Copyright 2001-2003 Glyph & Cog, LLC |
6 | // |
7 | //======================================================================== |
8 | |
9 | //======================================================================== |
10 | // |
11 | // Modified under the Poppler project - http://poppler.freedesktop.org |
12 | // |
13 | // All changes made under the Poppler project to this file are licensed |
14 | // under GPL version 2 or later |
15 | // |
16 | // Copyright (C) 2008 Koji Otani <sho@bbr.jp> |
17 | // Copyright (C) 2017 Adrian Johnson <ajohnson@redneon.com> |
18 | // Copyright (C) 2018, 2019 Albert Astals Cid <aacid@kde.org> |
19 | // Copyright (C) 2019 Oliver Sander <oliver.sander@tu-dresden.de> |
20 | // |
21 | // To see a description of the changes please see the Changelog file that |
22 | // came with your tarball or type make ChangeLog if you are building from git |
23 | // |
24 | //======================================================================== |
25 | |
26 | #ifndef UNICODEMAPFUNCS_H |
27 | #define UNICODEMAPFUNCS_H |
28 | |
29 | #include "UTF.h" |
30 | |
31 | int POPPLER_PRIVATE_EXPORT mapUTF8(Unicode u, char *buf, int bufSize); |
32 | |
33 | int mapUTF16(Unicode u, char *buf, int bufSize); |
34 | |
35 | #endif |
36 | |