nss: upgrade to release 3.73
[LibreOffice.git] / sal / textenc / unichars.hxx
blob8ca1021da005fa30d7ec2b49c24b0b8becf5c5da
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SAL_TEXTENC_UNICHARS_HXX
21 #define INCLUDED_SAL_TEXTENC_UNICHARS_HXX
23 #include <sal/config.h>
25 #include <cassert>
27 #include <rtl/character.hxx>
28 #include <sal/types.h>
30 #define RTL_TEXTENC_UNICODE_REPLACEMENT_CHARACTER 0xFFFD
32 bool ImplIsControlOrFormat(sal_uInt32 nUtf32);
34 // All code points that are high-surrogates, as of Unicode 3.1.1.
35 inline bool ImplIsHighSurrogate(sal_uInt32 nUtf32) { return nUtf32 >= 0xD800 && nUtf32 <= 0xDBFF; }
37 // All code points that are low-surrogates, as of Unicode 3.1.1.
38 inline bool ImplIsLowSurrogate(sal_uInt32 nUtf32) { return nUtf32 >= 0xDC00 && nUtf32 <= 0xDFFF; }
40 bool ImplIsPrivateUse(sal_uInt32 nUtf32);
42 bool ImplIsZeroWidth(sal_uInt32 nUtf32);
44 inline sal_uInt32 ImplGetHighSurrogate(sal_uInt32 nUtf32)
46 assert(nUtf32 >= 0x10000);
47 return ((nUtf32 - 0x10000) >> 10) | 0xD800;
50 inline sal_uInt32 ImplGetLowSurrogate(sal_uInt32 nUtf32)
52 assert(nUtf32 >= 0x10000);
53 return ((nUtf32 - 0x10000) & 0x3FF) | 0xDC00;
56 inline sal_uInt32 ImplCombineSurrogates(sal_uInt32 nHigh, sal_uInt32 nLow)
58 assert(ImplIsHighSurrogate(nHigh) && ImplIsLowSurrogate(nLow));
59 return (((nHigh & 0x3FF) << 10) | (nLow & 0x3FF)) + 0x10000;
62 #endif
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */