| /*------------------------------------------------------------------------- | |
| * | |
| * isn.h | |
| * PostgreSQL type definitions for ISNs (ISBN, ISMN, ISSN, EAN13, UPC) | |
| * | |
| * Author: German Mendez Bravo (Kronuz) | |
| * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group | |
| * | |
| * IDENTIFICATION | |
| * contrib/isn/isn.h | |
| * | |
| *------------------------------------------------------------------------- | |
| */ | |
| /* | |
| * uint64 is the internal storage format for ISNs. | |
| */ | |
| typedef uint64 ean13; | |
| extern void initialize(void); | |