Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/zint/backend/iso4217.h @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 /* | |
| 2 * ISO 4217 currency codes generated by "backend/tools/gen_iso4217_h.php" | |
| 3 */ | |
| 4 /* | |
| 5 libzint - the open source barcode library | |
| 6 Copyright (C) 2021-2024 Robin Stuart <rstuart114@gmail.com> | |
| 7 | |
| 8 Redistribution and use in source and binary forms, with or without | |
| 9 modification, are permitted provided that the following conditions | |
| 10 are met: | |
| 11 | |
| 12 1. Redistributions of source code must retain the above copyright | |
| 13 notice, this list of conditions and the following disclaimer. | |
| 14 2. Redistributions in binary form must reproduce the above copyright | |
| 15 notice, this list of conditions and the following disclaimer in the | |
| 16 documentation and/or other materials provided with the distribution. | |
| 17 3. Neither the name of the project nor the names of its contributors | |
| 18 may be used to endorse or promote products derived from this software | |
| 19 without specific prior written permission. | |
| 20 | |
| 21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | |
| 22 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 24 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | |
| 25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 27 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 28 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 29 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 30 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 31 SUCH DAMAGE. | |
| 32 */ | |
| 33 /* SPDX-License-Identifier: BSD-3-Clause */ | |
| 34 | |
| 35 #ifndef Z_ISO4217_H | |
| 36 #define Z_ISO4217_H | |
| 37 | |
| 38 /* Whether ISO 4217-1 numeric */ | |
| 39 static int iso4217_numeric(int cc) { | |
| 40 static const unsigned char codes[125] = { | |
| 41 0x00, 0x11, 0x00, 0x00, 0x11, 0x10, 0x1D, 0x10, | |
| 42 0x11, 0x01, 0x10, 0x04, 0x01, 0x11, 0x10, 0x10, | |
| 43 0x10, 0x01, 0x01, 0x11, 0x00, 0x44, 0x00, 0x90, | |
| 44 0x01, 0x08, 0x41, 0x40, 0x40, 0x41, 0x04, 0x00, | |
| 45 0x40, 0x40, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, | |
| 46 0x11, 0x11, 0x10, 0x11, 0x11, 0x11, 0x01, 0x01, | |
| 47 0x10, 0x41, 0x11, 0x45, 0x46, 0x44, 0x04, 0x40, | |
| 48 0x40, 0x44, 0x00, 0x00, 0x11, 0x00, 0x05, 0x01, | |
| 49 0x11, 0x10, 0x30, 0x00, 0x10, 0x44, 0x40, 0x00, | |
| 50 0x04, 0x44, 0x40, 0x11, 0x01, 0x00, 0x00, 0x04, | |
| 51 0x48, 0x40, 0x00, 0x00, 0x00, 0x04, 0x44, 0x40, | |
| 52 0x45, 0x00, 0x00, 0x01, 0x00, 0x10, 0x11, 0x11, | |
| 53 0x00, 0x11, 0x11, 0x00, 0x81, 0x00, 0x04, 0x04, | |
| 54 0x04, 0x01, 0x00, 0x14, 0x00, 0x00, 0x44, 0x00, | |
| 55 0x20, 0x00, 0x00, 0xB0, 0x7F, 0xB5, 0xFD, 0xFB, | |
| 56 0xBF, 0xBF, 0x3F, 0x47, 0xA4, | |
| 57 }; | |
| 58 int b = cc >> 3; | |
| 59 | |
| 60 if (b < 0 || b >= 125) { | |
| 61 return 0; | |
| 62 } | |
| 63 return codes[b] & (1 << (cc & 0x7)) ? 1 : 0; | |
| 64 } | |
| 65 | |
| 66 #endif /* Z_ISO4217_H */ |
