00001 /* 00002 * ISSN.h 00003 * PostgreSQL type definitions for ISNs (ISBN, ISMN, ISSN, EAN13, UPC) 00004 * 00005 * No information available for UPC prefixes 00006 * 00007 * 00008 * IDENTIFICATION 00009 * contrib/isn/UPC.h 00010 * 00011 */ 00012 00013 /* where the digit set begins, and how many of them are in the table */ 00014 const unsigned UPC_index[10][2] = { 00015 {0, 0}, 00016 {0, 0}, 00017 {0, 0}, 00018 {0, 0}, 00019 {0, 0}, 00020 {0, 0}, 00021 {0, 0}, 00022 {0, 0}, 00023 {0, 0}, 00024 {0, 0}, 00025 }; 00026 const char *UPC_range[][2] = { 00027 {NULL, NULL} 00028 };