summaryrefslogtreecommitdiff
path: root/contrib/isn/UPC.h
blob: 2491fa3ee22801d26a5721d4f806abb07d38bf51 (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
 *	  $PostgreSQL: pgsql/contrib/isn/UPC.h,v 1.1 2006/09/09 04:07:52 tgl Exp $
 *
 */

/* 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}
};