mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-23 03:26:56 -04:00
gs1_verify: validate AIs from BWIPP gs1-format-spec.txt
This commit is contained in:
parent
0b80592f87
commit
f9300cb37e
28 changed files with 5887 additions and 1275 deletions
65
backend/iso4217.h
Normal file
65
backend/iso4217.h
Normal file
|
@ -0,0 +1,65 @@
|
|||
/*
|
||||
* ISO 4217 currency codes generated by "backend/tools/gen_iso4217_h.php"
|
||||
*/
|
||||
/*
|
||||
libzint - the open source barcode library
|
||||
Copyright (C) 2021 Robin Stuart <rstuart114@gmail.com>
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. Neither the name of the project nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef ISO4217_H
|
||||
#define ISO4217_H
|
||||
|
||||
/* Whether ISO 4217-1 numeric */
|
||||
static int iso4217_numeric(int cc) {
|
||||
static const unsigned char codes[125] = {
|
||||
0x00, 0x11, 0x00, 0x00, 0x11, 0x10, 0x1D, 0x10,
|
||||
0x11, 0x01, 0x10, 0x04, 0x01, 0x11, 0x10, 0x10,
|
||||
0x10, 0x01, 0x01, 0x11, 0x00, 0x44, 0x00, 0x90,
|
||||
0x01, 0x08, 0x41, 0x40, 0x40, 0x41, 0x04, 0x00,
|
||||
0x40, 0x40, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
|
||||
0x11, 0x11, 0x10, 0x11, 0x11, 0x11, 0x01, 0x01,
|
||||
0x10, 0x41, 0x11, 0x45, 0x46, 0x44, 0x04, 0x40,
|
||||
0x40, 0x44, 0x00, 0x00, 0x11, 0x00, 0x05, 0x01,
|
||||
0x11, 0x10, 0x30, 0x00, 0x10, 0x44, 0x40, 0x00,
|
||||
0x04, 0x44, 0x40, 0x11, 0x01, 0x00, 0x00, 0x04,
|
||||
0x48, 0x40, 0x00, 0x00, 0x00, 0x04, 0x44, 0x40,
|
||||
0x45, 0x00, 0x00, 0x01, 0x00, 0x10, 0x11, 0x11,
|
||||
0x00, 0x11, 0x11, 0x00, 0x81, 0x00, 0x04, 0x04,
|
||||
0x04, 0x01, 0x00, 0x14, 0x00, 0x00, 0x44, 0x00,
|
||||
0x20, 0x00, 0x00, 0x80, 0x7F, 0xB5, 0xFD, 0xFB,
|
||||
0xBF, 0xBF, 0x3F, 0x47, 0xA4,
|
||||
};
|
||||
int b = cc >> 3;
|
||||
|
||||
if (b < 0 || b >= 125) {
|
||||
return 0;
|
||||
}
|
||||
return codes[b] & (1 << (cc & 0x7)) ? 1 : 0;
|
||||
}
|
||||
|
||||
#endif /* ISO4217_H */
|
Loading…
Add table
Add a link
Reference in a new issue