One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
pgsql-13
/
include
/
server
/
extension
/
isn
/
View File Name :
isn.h
/*------------------------------------------------------------------------- * * isn.h * PostgreSQL type definitions for ISNs (ISBN, ISMN, ISSN, EAN13, UPC) * * Author: German Mendez Bravo (Kronuz) * Portions Copyright (c) 1996-2020, 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 */