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: getopt_long.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/getopt_long.h */ #ifndef GETOPT_LONG_H #define GETOPT_LONG_H #include "pg_getopt.h" #ifndef HAVE_STRUCT_OPTION struct option { const char *name; int has_arg; int *flag; int val; }; #define no_argument 0 #define required_argument 1 #define optional_argument 2 #endif #ifndef HAVE_GETOPT_LONG extern int getopt_long(int argc, char *const argv[], const char *optstring, const struct option * longopts, int *longindex); #endif #endif /* GETOPT_LONG_H */
Upload File
Create Folder