Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-10 10:23:53

0001 //========================================================================
0002 //
0003 // UnicodeMapFuncs.h
0004 //
0005 // Copyright 2001-2003 Glyph & Cog, LLC
0006 //
0007 //========================================================================
0008 
0009 //========================================================================
0010 //
0011 // Modified under the Poppler project - http://poppler.freedesktop.org
0012 //
0013 // All changes made under the Poppler project to this file are licensed
0014 // under GPL version 2 or later
0015 //
0016 // Copyright (C) 2008 Koji Otani <sho@bbr.jp>
0017 // Copyright (C) 2017 Adrian Johnson <ajohnson@redneon.com>
0018 // Copyright (C) 2018, 2019 Albert Astals Cid <aacid@kde.org>
0019 // Copyright (C) 2019 Oliver Sander <oliver.sander@tu-dresden.de>
0020 //
0021 // To see a description of the changes please see the Changelog file that
0022 // came with your tarball or type make ChangeLog if you are building from git
0023 //
0024 //========================================================================
0025 
0026 #ifndef UNICODEMAPFUNCS_H
0027 #define UNICODEMAPFUNCS_H
0028 
0029 #include "UTF.h"
0030 
0031 int POPPLER_PRIVATE_EXPORT mapUTF8(Unicode u, char *buf, int bufSize);
0032 
0033 int mapUTF16(Unicode u, char *buf, int bufSize);
0034 
0035 #endif