~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-updates

« back to all changes in this revision

Viewing changes to contrib/isn/UPC.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * ISSN.h
 
3
 *        PostgreSQL type definitions for ISNs (ISBN, ISMN, ISSN, EAN13, UPC)
 
4
 *
 
5
 * No information available for UPC prefixes
 
6
 *
 
7
 *
 
8
 * IDENTIFICATION
 
9
 *        $PostgreSQL$
 
10
 *
 
11
 */
 
12
 
 
13
/* where the digit set begins, and how many of them are in the table */
 
14
const unsigned UPC_index[10][2] = {
 
15
        {0, 0},
 
16
        {0, 0},
 
17
        {0, 0},
 
18
        {0, 0},
 
19
        {0, 0},
 
20
        {0, 0},
 
21
        {0, 0},
 
22
        {0, 0},
 
23
        {0, 0},
 
24
        {0, 0},
 
25
};
 
26
const char *UPC_range[][2] = {
 
27
        {NULL, NULL}
 
28
};