mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
These probably should have been static all along, it was only forgotten out of sloppiness. Reviewed-by: Andres Freund <andres@anarazel.de> Discussion: https://www.postgresql.org/message-id/flat/e0a62134-83da-4ba4-8cdb-ceb0111c95ce@eisentraut.org
29 lines
452 B
C
29 lines
452 B
C
/*
|
|
* 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 */
|
|
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}
|
|
};
|