Hackfut Security File Manager
Current Path:
/opt/td-agent/embedded/include/postgresql/server
opt
/
td-agent
/
embedded
/
include
/
postgresql
/
server
/
📁
..
📁
access
📁
bootstrap
📄
c.h
(33.2 KB)
📁
catalog
📁
commands
📁
common
📁
datatype
📄
dynloader.h
(1.09 KB)
📁
executor
📁
fe_utils
📄
fmgr.h
(30.51 KB)
📁
foreign
📄
funcapi.h
(11.38 KB)
📄
getaddrinfo.h
(3.89 KB)
📄
getopt_long.h
(688 B)
📁
lib
📁
libpq
📁
mb
📄
miscadmin.h
(15.87 KB)
📁
nodes
📁
optimizer
📁
parser
📄
pg_config.h
(28.5 KB)
📄
pg_config_ext.h
(323 B)
📄
pg_config_manual.h
(11.36 KB)
📄
pg_config_os.h
(1.03 KB)
📄
pg_getopt.h
(1.06 KB)
📄
pg_trace.h
(316 B)
📄
pgstat.h
(32.49 KB)
📄
pgtar.h
(752 B)
📄
pgtime.h
(2.27 KB)
📄
plpgsql.h
(28.06 KB)
📁
port
📄
port.h
(13.64 KB)
📁
portability
📄
postgres.h
(22.61 KB)
📄
postgres_ext.h
(2.1 KB)
📄
postgres_fe.h
(763 B)
📁
postmaster
📁
regex
📁
replication
📁
rewrite
📄
rusagestub.h
(843 B)
📁
snowball
📁
storage
📁
tcop
📁
tsearch
📁
utils
📄
windowapi.h
(2.32 KB)
Editing: pg_getopt.h
/* * Portions Copyright (c) 1987, 1993, 1994 * The Regents of the University of California. All rights reserved. * * Portions Copyright (c) 2003-2016, PostgreSQL Global Development Group * * src/include/pg_getopt.h */ #ifndef PG_GETOPT_H #define PG_GETOPT_H /* POSIX says getopt() is provided by unistd.h */ #include <unistd.h> /* rely on the system's getopt.h if present */ #ifdef HAVE_GETOPT_H #include <getopt.h> #endif /* * If we have <getopt.h>, assume it declares these variables, else do that * ourselves. (We used to just declare them unconditionally, but Cygwin * doesn't like that.) */ #ifndef HAVE_GETOPT_H extern char *optarg; extern int optind; extern int opterr; extern int optopt; #endif /* HAVE_GETOPT_H */ /* * Some platforms have optreset but fail to declare it in <getopt.h>, so cope. * Cygwin, however, doesn't like this either. */ #if defined(HAVE_INT_OPTRESET) && !defined(__CYGWIN__) extern int optreset; #endif #ifndef HAVE_GETOPT extern int getopt(int nargc, char *const * nargv, const char *ostr); #endif #endif /* PG_GETOPT_H */
Upload File
Create Folder