summaryrefslogtreecommitdiff
path: root/contrib/isn/UPC.h
blob: b95473e12df5109d8893e3e996db7255c7737609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * ISSN.h
 *	  PostgreSQL type definitions for ISNs (ISBN, ISMN, ISSN, EAN13, UPC)
 *
 * No information available for UPC prefixes
 *
 *
 * IDENTIFICATION
 *	  contrib/isn/UPC.h
 *
 */

/* where the digit set begins, and how many of them are in the table */
const unsigned UPC_index[10][2] = {
	{0, 0},
	{0, 0},
	{0, 0},
	{0, 0},
	{0, 0},
	{0, 0},
	{0, 0},
	{0, 0},
	{0, 0},
	{0, 0},
};
const char *UPC_range[][2] = {
	{NULL, NULL}
};