/
ihtiandr9
/
httpserver
Обзор
Документация
Войти
/
ihtiandr9
/
httpserver
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
class-stylesheet
cpp/third_party/postgresql/include/pgsql/server/extension/isn/isn.h
35 строк
759 B
ihtiandr9 (note)
build Win. Supported only x64
25 авг 2025, 05:07
25 авг 2025, 05:07
ea9dcd2
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * isn.h * PostgreSQL type definitions for ISNs (ISBN, ISMN, ISSN, EAN13, UPC) * * Author: German Mendez Bravo (Kronuz) * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * * IDENTIFICATION * contrib/isn/isn.h * *------------------------------------------------------------------------- */ #ifndef ISN_H #define ISN_H #include "fmgr.h" #undef ISN_DEBUG #define ISN_WEAK_MODE /* * uint64 is the internal storage format for ISNs. */ typedef uint64 ean13; #define EAN13_FORMAT UINT64_FORMAT #define PG_GETARG_EAN13(n) PG_GETARG_INT64(n) #define PG_RETURN_EAN13(x) PG_RETURN_INT64(x) extern void initialize(void); #endif /* ISN_H */