mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Author: Chao Li <li.evan.chao@gmail.com> Author: David Rowley <dgrowleyml@gmail.com> Discussion: https://postgr.es/m/CAEoWx2=hOBCPm-Z=F15twr_23XjHeoXSbifP5GdEdtWona97wQ@mail.gmail.com
		
			
				
	
	
		
			29 lines
		
	
	
		
			451 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			451 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * UPC.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 */
 | 
						|
static 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},
 | 
						|
};
 | 
						|
static const char *UPC_range[][2] = {
 | 
						|
	{NULL, NULL}
 | 
						|
};
 |