Hackfut Security File Manager
Current Path:
/opt/alt/postgresql11/usr/include/pgsql/server
opt
/
alt
/
postgresql11
/
usr
/
include
/
pgsql
/
server
/
📁
..
📁
access
📁
bootstrap
📄
c.h
(24.21 KB)
📁
catalog
📁
commands
📁
datatype
📄
dynloader.h
(1.09 KB)
📁
executor
📄
fmgr.h
(29.46 KB)
📁
foreign
📄
funcapi.h
(10.24 KB)
📄
getaddrinfo.h
(3.89 KB)
📄
getopt_long.h
(827 B)
📁
lib
📁
libpq
📁
mb
📄
miscadmin.h
(15.46 KB)
📁
nodes
📁
optimizer
📁
parser
📄
pg_config.h
(1.01 KB)
📄
pg_config_manual.h
(9.36 KB)
📄
pg_config_os.h
(1.03 KB)
📄
pg_config_x86_64.h
(26.42 KB)
📄
pg_trace.h
(316 B)
📄
pgstat.h
(23.94 KB)
📄
pgtar.h
(682 B)
📄
pgtime.h
(2.25 KB)
📄
plpgsql.h
(25.74 KB)
📁
port
📄
port.h
(13.95 KB)
📁
portability
📄
postgres.h
(20.07 KB)
📄
postgres_ext.h
(1.74 KB)
📄
postgres_fe.h
(730 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-2012, PostgreSQL Global Development Group * * src/include/getopt_long.h */ #ifndef GETOPT_LONG_H #define GETOPT_LONG_H #ifdef HAVE_GETOPT_H #include <getopt.h> #endif /* These are picked up from the system's getopt() facility. */ extern int opterr; extern int optind; extern int optopt; extern char *optarg; #ifndef HAVE_STRUCT_OPTION struct option { const char *name; int has_arg; int *flag; int val; }; #define no_argument 0 #define required_argument 1 #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