/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
contrib/isn/UPC.h
28 строк
451 B
David Rowley
Fix various incorrect filename references
22 сен 2025, 04:33
22 сен 2025, 04:33
9fc7f6a
Код
Авторство
О чём код?
/* * 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} };