Hackfut Security File Manager
Current Path:
/opt/alt/postgresql11/usr/include/pgsql/server/utils
opt
/
alt
/
postgresql11
/
usr
/
include
/
pgsql
/
server
/
utils
/
📁
..
📄
acl.h
(12.79 KB)
📄
array.h
(10.61 KB)
📄
ascii.h
(579 B)
📄
attoptcache.h
(725 B)
📄
builtins.h
(47.77 KB)
📄
bytea.h
(1.58 KB)
📄
cash.h
(2.07 KB)
📄
catcache.h
(7.51 KB)
📄
combocid.h
(698 B)
📄
date.h
(7.73 KB)
📄
datetime.h
(9.92 KB)
📄
datum.h
(1.48 KB)
📄
dynahash.h
(498 B)
📄
dynamic_loader.h
(648 B)
📄
elog.h
(12.56 KB)
📄
errcodes.h
(19.61 KB)
📄
fmgroids.h
(61.09 KB)
📄
fmgrtab.h
(1.15 KB)
📄
formatting.h
(1.41 KB)
📄
geo_decls.h
(15.86 KB)
📄
guc.h
(13.19 KB)
📄
guc_tables.h
(7.15 KB)
📄
help_config.h
(432 B)
📄
hsearch.h
(5.51 KB)
📄
inet.h
(2.66 KB)
📄
int8.h
(4.03 KB)
📄
inval.h
(1.81 KB)
📄
json.h
(916 B)
📄
logtape.h
(1.5 KB)
📄
lsyscache.h
(6.51 KB)
📄
memutils.h
(5.2 KB)
📄
nabstime.h
(5.79 KB)
📄
numeric.h
(1.88 KB)
📄
palloc.h
(3.92 KB)
📄
pg_crc.h
(4.36 KB)
📄
pg_crc_tables.h
(19.73 KB)
📄
pg_locale.h
(2.59 KB)
📄
pg_lzcompress.h
(2.97 KB)
📄
pg_rusage.h
(847 B)
📄
plancache.h
(8.02 KB)
📄
portal.h
(9.22 KB)
📄
probes.h
(37.93 KB)
📄
ps_status.h
(668 B)
📄
rangetypes.h
(7.4 KB)
📄
rbtree.h
(2.26 KB)
📄
rel.h
(12.27 KB)
📄
relcache.h
(3.17 KB)
📄
relmapper.h
(1.68 KB)
📄
reltrigger.h
(1.95 KB)
📄
resowner.h
(5.07 KB)
📄
selfuncs.h
(7.5 KB)
📄
snapmgr.h
(1.59 KB)
📄
snapshot.h
(2.59 KB)
📄
sortsupport.h
(5.3 KB)
📄
spccache.h
(556 B)
📄
syscache.h
(5.51 KB)
📄
timestamp.h
(9.5 KB)
📄
tqual.h
(3.5 KB)
📄
tuplesort.h
(4.62 KB)
📄
tuplestore.h
(3.14 KB)
📄
typcache.h
(4.26 KB)
📄
tzparser.h
(1.13 KB)
📄
uuid.h
(861 B)
📄
varbit.h
(4.27 KB)
📄
xml.h
(3.89 KB)
Editing: pg_locale.h
/*----------------------------------------------------------------------- * * PostgreSQL locale utilities * * src/include/utils/pg_locale.h * * Copyright (c) 2002-2012, PostgreSQL Global Development Group * *----------------------------------------------------------------------- */ #ifndef _PG_LOCALE_ #define _PG_LOCALE_ #include <locale.h> #if defined(LOCALE_T_IN_XLOCALE) || defined(WCSTOMBS_L_IN_XLOCALE) #include <xlocale.h> #endif #include "utils/guc.h" /* GUC settings */ extern char *locale_messages; extern char *locale_monetary; extern char *locale_numeric; extern char *locale_time; /* lc_time localization cache */ extern char *localized_abbrev_days[]; extern char *localized_full_days[]; extern char *localized_abbrev_months[]; extern char *localized_full_months[]; extern bool check_locale_messages(char **newval, void **extra, GucSource source); extern void assign_locale_messages(const char *newval, void *extra); extern bool check_locale_monetary(char **newval, void **extra, GucSource source); extern void assign_locale_monetary(const char *newval, void *extra); extern bool check_locale_numeric(char **newval, void **extra, GucSource source); extern void assign_locale_numeric(const char *newval, void *extra); extern bool check_locale_time(char **newval, void **extra, GucSource source); extern void assign_locale_time(const char *newval, void *extra); extern bool check_locale(int category, const char *locale, char **canonname); extern char *pg_perm_setlocale(int category, const char *locale); extern bool lc_collate_is_c(Oid collation); extern bool lc_ctype_is_c(Oid collation); /* * Return the POSIX lconv struct (contains number/money formatting * information) with locale information for all categories. */ extern struct lconv *PGLC_localeconv(void); extern void cache_locale_time(void); /* * We define our own wrapper around locale_t so we can keep the same * function signatures for all builds, while not having to create a * fake version of the standard type locale_t in the global namespace. * The fake version of pg_locale_t can be checked for truth; that's * about all it will be needed for. */ #ifdef HAVE_LOCALE_T typedef locale_t pg_locale_t; #else typedef int pg_locale_t; #endif extern pg_locale_t pg_newlocale_from_collation(Oid collid); /* These functions convert from/to libc's wchar_t, *not* pg_wchar_t */ #ifdef USE_WIDE_UPPER_LOWER extern size_t wchar2char(char *to, const wchar_t *from, size_t tolen, pg_locale_t locale); extern size_t char2wchar(wchar_t *to, size_t tolen, const char *from, size_t fromlen, pg_locale_t locale); #endif #endif /* _PG_LOCALE_ */
Upload File
Create Folder