✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/include//maxminddb.h
#ifdef __cplusplus
extern "C" {
#endif

#ifndef MAXMINDDB_H
#define MAXMINDDB_H

/* Request POSIX.1-2008. However, we want to remain compatible with
 * POSIX.1-2001 (since we have been historically and see no reason to drop
 * compatibility). By requesting POSIX.1-2008, we can conditionally use
 * features provided by that standard if the implementation provides it. We can
 * check for what the implementation provides by checking the _POSIX_VERSION
 * macro after including unistd.h. If a feature is in POSIX.1-2008 but not
 * POSIX.1-2001, check that macro before using the feature (or check for the
 * feature directly if possible). */
#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200809L
#endif

#include "maxminddb_config.h"
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/types.h>

#ifdef _WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
/* libmaxminddb package version from configure */
#define PACKAGE_VERSION "1.5.2"

typedef ADDRESS_FAMILY sa_family_t;

#if defined(_MSC_VER)
/* MSVC doesn't define signed size_t, copy it from configure */
#define ssize_t SSIZE_T

/* MSVC doesn't support restricted pointers */
#define restrict
#endif
#else
#include <netdb.h>
#include <netinet/in.h>
#include <sys/socket.h>
#endif

#define MMDB_DATA_TYPE_EXTENDED (0)
#define MMDB_DATA_TYPE_POINTER (1)
#define MMDB_DATA_TYPE_UTF8_STRING (2)
#define MMDB_DATA_TYPE_DOUBLE (3)
#define MMDB_DATA_TYPE_BYTES (4)
#define MMDB_DATA_TYPE_UINT16 (5)
#define MMDB_DATA_TYPE_UINT32 (6)
#define MMDB_DATA_TYPE_MAP (7)
#define MMDB_DATA_TYPE_INT32 (8)
#define MMDB_DATA_TYPE_UINT64 (9)
#define MMDB_DATA_TYPE_UINT128 (10)
#define MMDB_DATA_TYPE_ARRAY (11)
#define MMDB_DATA_TYPE_CONTAINER (12)
#define MMDB_DATA_TYPE_END_MARKER (13)
#define MMDB_DATA_TYPE_BOOLEAN (14)
#define MMDB_DATA_TYPE_FLOAT (15)

#define MMDB_RECORD_TYPE_SEARCH_NODE (0)
#define MMDB_RECORD_TYPE_EMPTY (1)
#define MMDB_RECORD_TYPE_DATA (2)
#define MMDB_RECORD_TYPE_INVALID (3)

/* flags for open */
#define MMDB_MODE_MMAP (1)
#define MMDB_MODE_MASK (7)

/* error codes */
#define MMDB_SUCCESS (0)
#define MMDB_FILE_OPEN_ERROR (1)
#define MMDB_CORRUPT_SEARCH_TREE_ERROR (2)
#define MMDB_INVALID_METADATA_ERROR (3)
#define MMDB_IO_ERROR (4)
#define MMDB_OUT_OF_MEMORY_ERROR (5)
#define MMDB_UNKNOWN_DATABASE_FORMAT_ERROR (6)
#define MMDB_INVALID_DATA_ERROR (7)
#define MMDB_INVALID_LOOKUP_PATH_ERROR (8)
#define MMDB_LOOKUP_PATH_DOES_NOT_MATCH_DATA_ERROR (9)
#define MMDB_INVALID_NODE_NUMBER_ERROR (10)
#define MMDB_IPV6_LOOKUP_IN_IPV4_DATABASE_ERROR (11)

#if !(MMDB_UINT128_IS_BYTE_ARRAY)
#if MMDB_UINT128_USING_MODE
typedef unsigned int mmdb_uint128_t __attribute__((__mode__(TI)));
#else
typedef unsigned __int128 mmdb_uint128_t;
#endif
#endif

/* This is a pointer into the data section for a given IP address lookup */
typedef struct MMDB_entry_s {
    const struct MMDB_s *mmdb;
    uint32_t offset;
} MMDB_entry_s;

typedef struct MMDB_lookup_result_s {
    bool found_entry;
    MMDB_entry_s entry;
    uint16_t netmask;
} MMDB_lookup_result_s;

typedef struct MMDB_entry_data_s {
    bool has_data;
    union {
        uint32_t pointer;
        const char *utf8_string;
        double double_value;
        const uint8_t *bytes;
        uint16_t uint16;
        uint32_t uint32;
        int32_t int32;
        uint64_t uint64;
#if MMDB_UINT128_IS_BYTE_ARRAY
        uint8_t uint128[16];
#else
        mmdb_uint128_t uint128;
#endif
        bool boolean;
        float float_value;
    };
    /* This is a 0 if a given entry cannot be found. This can only happen
     * when a call to MMDB_(v)get_value() asks for hash keys or array
     * indices that don't exist. */
    uint32_t offset;
    /* This is the next entry in the data section, but it's really only
     * relevant for entries that part of a larger map or array
     * struct. There's no good reason for an end user to look at this
     * directly. */
    uint32_t offset_to_next;
    /* This is only valid for strings, utf8_strings or binary data */
    uint32_t data_size;
    /* This is an MMDB_DATA_TYPE_* constant */
    uint32_t type;
} MMDB_entry_data_s;

/* This is the return type when someone asks for all the entry data in a map or
 * array */
typedef struct MMDB_entry_data_list_s {
    MMDB_entry_data_s entry_data;
    struct MMDB_entry_data_list_s *next;
    void *pool;
} MMDB_entry_data_list_s;

typedef struct MMDB_description_s {
    const char *language;
    const char *description;
} MMDB_description_s;

/* WARNING: do not add new fields to this struct without bumping the SONAME.
 * The struct is allocated by the users of this library and increasing the
 * size will cause existing users to allocate too little space when the shared
 * library is upgraded */
typedef struct MMDB_metadata_s {
    uint32_t node_count;
    uint16_t record_size;
    uint16_t ip_version;
    const char *database_type;
    struct {
        size_t count;
        const char **names;
    } languages;
    uint16_t binary_format_major_version;
    uint16_t binary_format_minor_version;
    uint64_t build_epoch;
    struct {
        size_t count;
        MMDB_description_s **descriptions;
    } description;
    /* See above warning before adding fields */
} MMDB_metadata_s;

/* WARNING: do not add new fields to this struct without bumping the SONAME.
 * The struct is allocated by the users of this library and increasing the
 * size will cause existing users to allocate too little space when the shared
 * library is upgraded */
typedef struct MMDB_ipv4_start_node_s {
    uint16_t netmask;
    uint32_t node_value;
    /* See above warning before adding fields */
} MMDB_ipv4_start_node_s;

/* WARNING: do not add new fields to this struct without bumping the SONAME.
 * The struct is allocated by the users of this library and increasing the
 * size will cause existing users to allocate too little space when the shared
 * library is upgraded */
typedef struct MMDB_s {
    uint32_t flags;
    const char *filename;
    ssize_t file_size;
    const uint8_t *file_content;
    const uint8_t *data_section;
    uint32_t data_section_size;
    const uint8_t *metadata_section;
    uint32_t metadata_section_size;
    uint16_t full_record_byte_size;
    uint16_t depth;
    MMDB_ipv4_start_node_s ipv4_start_node;
    MMDB_metadata_s metadata;
    /* See above warning before adding fields */
} MMDB_s;

typedef struct MMDB_search_node_s {
    uint64_t left_record;
    uint64_t right_record;
    uint8_t left_record_type;
    uint8_t right_record_type;
    MMDB_entry_s left_record_entry;
    MMDB_entry_s right_record_entry;
} MMDB_search_node_s;

extern int
MMDB_open(const char *const filename, uint32_t flags, MMDB_s *const mmdb);
extern MMDB_lookup_result_s MMDB_lookup_string(const MMDB_s *const mmdb,
                                               const char *const ipstr,
                                               int *const gai_error,
                                               int *const mmdb_error);
extern MMDB_lookup_result_s
MMDB_lookup_sockaddr(const MMDB_s *const mmdb,
                     const struct sockaddr *const sockaddr,
                     int *const mmdb_error);
extern int MMDB_read_node(const MMDB_s *const mmdb,
                          uint32_t node_number,
                          MMDB_search_node_s *const node);
extern int MMDB_get_value(MMDB_entry_s *const start,
                          MMDB_entry_data_s *const entry_data,
                          ...);
extern int MMDB_vget_value(MMDB_entry_s *const start,
                           MMDB_entry_data_s *const entry_data,
                           va_list va_path);
extern int MMDB_aget_value(MMDB_entry_s *const start,
                           MMDB_entry_data_s *const entry_data,
                           const char *const *const path);
extern int MMDB_get_metadata_as_entry_data_list(
    const MMDB_s *const mmdb, MMDB_entry_data_list_s **const entry_data_list);
extern int
MMDB_get_entry_data_list(MMDB_entry_s *start,
                         MMDB_entry_data_list_s **const entry_data_list);
extern void
MMDB_free_entry_data_list(MMDB_entry_data_list_s *const entry_data_list);
extern void MMDB_close(MMDB_s *const mmdb);
extern const char *MMDB_lib_version(void);
extern int
MMDB_dump_entry_data_list(FILE *const stream,
                          MMDB_entry_data_list_s *const entry_data_list,
                          int indent);
extern const char *MMDB_strerror(int error_code);

#endif /* MAXMINDDB_H */

#ifdef __cplusplus
}
#endif

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
20 Aug 2026 6.54 PM
root / root
0755
GL
--
17 Jan 2026 3.22 PM
root / root
0755
X11
--
27 May 2026 4.58 AM
root / root
0755
arpa
--
5 Aug 2026 4.57 AM
root / root
0755
asm
--
12 Sep 2026 4.57 AM
root / root
0755
asm-generic
--
12 Sep 2026 4.57 AM
root / root
0755
bind9
--
13 Aug 2026 11.36 AM
root / root
0755
bits
--
5 Aug 2026 4.57 AM
root / root
0755
blkid
--
27 May 2026 4.58 AM
root / root
0755
brotli
--
6 Feb 2026 5.03 AM
root / root
0755
c++
--
4 Apr 2026 10.16 PM
root / root
0755
drm
--
12 Sep 2026 4.57 AM
root / root
0755
e2p
--
17 Jan 2026 3.22 PM
root / root
0755
et
--
17 Jan 2026 3.22 PM
root / root
0755
event2
--
17 Jan 2026 3.18 PM
root / root
0755
ext2fs
--
17 Jan 2026 3.22 PM
root / root
0755
finclude
--
5 Aug 2026 4.57 AM
root / root
0755
fontconfig
--
17 Jan 2026 3.22 PM
root / root
0755
freetype2
--
17 Jan 2026 3.22 PM
root / root
0755
fstrm
--
17 Jan 2026 3.22 PM
root / root
0755
fwctl
--
12 Sep 2026 4.57 AM
root / root
0755
gdbm
--
17 Jan 2026 3.22 PM
root / root
0755
gio-unix-2.0
--
8 Sep 2026 9.54 AM
root / root
0755
glib-2.0
--
10 Sep 2026 4.57 AM
root / root
0755
gnu
--
5 Aug 2026 4.57 AM
root / root
0755
google
--
17 Jan 2026 3.22 PM
root / root
0755
graphite2
--
17 Jan 2026 3.22 PM
root / root
0755
gssapi
--
27 May 2026 4.58 AM
root / root
0755
gssrpc
--
27 May 2026 4.58 AM
root / root
0755
harfbuzz
--
17 Jan 2026 3.22 PM
root / root
0755
json-c
--
17 Jan 2026 3.22 PM
root / root
0755
kadm5
--
27 May 2026 4.58 AM
root / root
0755
krb5
--
27 May 2026 4.58 AM
root / root
0755
libexslt
--
26 Jun 2026 4.57 AM
root / root
0755
libltdl
--
17 Jan 2026 3.22 PM
root / root
0755
libmount
--
27 May 2026 4.58 AM
root / root
0755
libpng16
--
26 Jun 2026 4.57 AM
root / root
0755
libxml2
--
31 Aug 2026 10.12 AM
root / root
0755
libxslt
--
26 Jun 2026 4.57 AM
root / root
0755
linux
--
12 Sep 2026 4.57 AM
root / root
0755
lzma
--
17 Jan 2026 3.22 PM
root / root
0755
misc
--
12 Sep 2026 4.57 AM
root / root
0755
mtd
--
12 Sep 2026 4.57 AM
root / root
0755
mysql
--
22 Aug 2026 4.57 AM
root / root
0755
ncurses
--
17 Jan 2026 3.22 PM
root / root
0755
ncursesw
--
17 Jan 2026 3.22 PM
root / root
0755
net
--
5 Aug 2026 4.57 AM
root / root
0755
netash
--
5 Aug 2026 4.57 AM
root / root
0755
netatalk
--
5 Aug 2026 4.57 AM
root / root
0755
netax25
--
5 Aug 2026 4.57 AM
root / root
0755
neteconet
--
5 Aug 2026 4.57 AM
root / root
0755
netinet
--
5 Aug 2026 4.57 AM
root / root
0755
netipx
--
5 Aug 2026 4.57 AM
root / root
0755
netiucv
--
5 Aug 2026 4.57 AM
root / root
0755
netpacket
--
5 Aug 2026 4.57 AM
root / root
0755
netrom
--
5 Aug 2026 4.57 AM
root / root
0755
netrose
--
5 Aug 2026 4.57 AM
root / root
0755
nfs
--
5 Aug 2026 4.57 AM
root / root
0755
openssl
--
29 Jul 2026 4.57 AM
root / root
0755
pcp
--
21 Aug 2026 4.57 AM
root / root
0755
protobuf-c
--
17 Jan 2026 3.22 PM
root / root
0755
protocols
--
5 Aug 2026 4.57 AM
root / root
0755
python3.9
--
14 Aug 2026 4.57 AM
root / root
0755
rdma
--
12 Sep 2026 4.57 AM
root / root
0755
rpc
--
5 Aug 2026 4.57 AM
root / root
0755
scsi
--
12 Sep 2026 4.57 AM
root / root
0755
security
--
10 Sep 2026 4.57 AM
root / root
0755
selinux
--
17 Jan 2026 3.22 PM
root / root
0755
sepol
--
17 Jan 2026 3.22 PM
root / root
0755
sound
--
12 Sep 2026 4.57 AM
root / root
0755
sys
--
5 Aug 2026 4.57 AM
root / root
0755
sysprof-4
--
17 Jan 2026 3.22 PM
root / root
0755
unicode
--
17 Jan 2026 3.22 PM
root / root
0755
video
--
12 Sep 2026 4.57 AM
root / root
0755
webp
--
17 Jan 2026 3.22 PM
root / root
0755
xcb
--
17 Jan 2026 3.22 PM
root / root
0755
xen
--
12 Sep 2026 4.57 AM
root / root
0755
FlexLexer.h
6.731 KB
30 Jan 2022 8.23 AM
root / root
0644
a.out.h
4.249 KB
3 Aug 2026 10.11 AM
root / root
0644
aio.h
7.557 KB
3 Aug 2026 10.11 AM
root / root
0644
aliases.h
1.98 KB
3 Aug 2026 10.12 AM
root / root
0644
alloca.h
1.175 KB
3 Aug 2026 10.11 AM
root / root
0644
ar.h
1.69 KB
3 Aug 2026 10.11 AM
root / root
0644
argp.h
24.949 KB
3 Aug 2026 10.12 AM
root / root
0644
argz.h
5.909 KB
3 Aug 2026 10.11 AM
root / root
0644
assert.h
4.455 KB
3 Aug 2026 10.11 AM
root / root
0644
autosprintf.h
2.364 KB
27 Sep 2023 6.51 AM
root / root
0644
byteswap.h
1.415 KB
3 Aug 2026 10.11 AM
root / root
0644
bzlib.h
6.094 KB
13 Jul 2019 5.50 PM
root / root
0644
com_err.h
2.068 KB
30 Dec 2021 5.54 AM
root / root
0644
complex.h
7.949 KB
3 Aug 2026 10.11 AM
root / root
0644
cpio.h
2.215 KB
3 Aug 2026 10.11 AM
root / root
0644
cpuidle.h
0.909 KB
11 Sep 2026 1.33 PM
root / root
0644
crypt.h
10.898 KB
10 Feb 2022 4.05 AM
root / root
0644
ctype.h
10.712 KB
3 Aug 2026 10.11 AM
root / root
0644
curses.h
96.823 KB
21 Sep 2025 9.23 AM
root / root
0644
cursesapp.h
7.061 KB
21 Sep 2025 9.23 AM
root / root
0644
cursesf.h
27.372 KB
21 Sep 2025 9.23 AM
root / root
0644
cursesm.h
19.441 KB
21 Sep 2025 9.23 AM
root / root
0644
cursesp.h
8.546 KB
21 Sep 2025 9.23 AM
root / root
0644
cursesw.h
49.127 KB
21 Sep 2025 9.23 AM
root / root
0644
cursslk.h
7.149 KB
21 Sep 2025 9.23 AM
root / root
0644
dbm.h
1.37 KB
2 Jan 2022 8.34 AM
root / root
0644
dirent.h
12.321 KB
3 Aug 2026 10.11 AM
root / root
0644
dlfcn.h
8.596 KB
3 Aug 2026 10.11 AM
root / root
0644
elf.h
178.264 KB
3 Aug 2026 10.12 AM
root / root
0644
endian.h
2.245 KB
3 Aug 2026 10.11 AM
root / root
0644
entities.h
4.814 KB
12 Jan 2021 12.09 AM
root / root
0644
envz.h
2.8 KB
3 Aug 2026 10.11 AM
root / root
0644
err.h
2.286 KB
3 Aug 2026 10.11 AM
root / root
0644
errno.h
1.64 KB
3 Aug 2026 10.11 AM
root / root
0644
error.h
2.359 KB
3 Aug 2026 10.11 AM
root / root
0644
eti.h
2.899 KB
21 Sep 2025 9.23 AM
root / root
0644
etip.h
9.605 KB
21 Sep 2025 9.23 AM
root / root
0644
evdns.h
1.972 KB
26 Jan 2019 9.53 AM
root / root
0644
event.h
2.68 KB
26 Jan 2019 9.53 AM
root / root
0644
evhttp.h
1.987 KB
26 Jan 2019 9.53 AM
root / root
0644
evrpc.h
1.968 KB
26 Jan 2019 9.53 AM
root / root
0644
evutil.h
1.74 KB
26 Jan 2019 9.53 AM
root / root
0644
execinfo.h
1.487 KB
3 Aug 2026 10.12 AM
root / root
0644
expat.h
43.235 KB
8 Sep 2026 9.58 AM
root / root
0644
expat_config.h
3.818 KB
8 Sep 2026 9.58 AM
root / root
0644
expat_external.h
5.888 KB
25 Oct 2022 3.08 PM
root / root
0644
fcntl.h
11.174 KB
3 Aug 2026 10.11 AM
root / root
0644
features-time64.h
1.371 KB
3 Aug 2026 10.11 AM
root / root
0644
features.h
17.691 KB
3 Aug 2026 10.11 AM
root / root
0644
fenv.h
5.652 KB
3 Aug 2026 10.11 AM
root / root
0644
ffi-x86_64.h
13.876 KB
25 Sep 2023 7.54 PM
root / root
0644
ffi.h
0.543 KB
25 Sep 2023 7.54 PM
root / root
0644
ffitarget-x86_64.h
4.63 KB
25 Sep 2023 7.54 PM
root / root
0644
ffitarget.h
0.602 KB
25 Sep 2023 7.54 PM
root / root
0644
fmtmsg.h
3.164 KB
3 Aug 2026 10.11 AM
root / root
0644
fnmatch.h
2.242 KB
3 Aug 2026 10.11 AM
root / root
0644
form.h
18.457 KB
21 Sep 2025 9.23 AM
root / root
0644
fpu_control.h
3.5 KB
3 Aug 2026 10.11 AM
root / root
0644
fstab.h
3.038 KB
3 Aug 2026 10.11 AM
root / root
0644
fstrm.h
12.712 KB
11 Mar 2019 8.58 PM
root / root
0644
fts.h
9.354 KB
3 Aug 2026 10.11 AM
root / root
0644
ftw.h
6.194 KB
3 Aug 2026 10.11 AM
root / root
0644
gconv.h
4.112 KB
3 Aug 2026 10.11 AM
root / root
0644
gd.h
58.245 KB
6 Mar 2021 6.21 PM
root / root
0644
gd_color_map.h
0.467 KB
12 Jan 2021 12.09 AM
root / root
0644
gd_errors.h
1.468 KB
12 Jan 2021 12.09 AM
root / root
0644
gd_io.h
2.932 KB
3 Mar 2021 7.15 AM
root / root
0644
gdbm.h
11.896 KB
2 Oct 2024 9.50 PM
root / root
0644
gdcache.h
2.924 KB
3 Mar 2021 7.15 AM
root / root
0644
gdfontg.h
0.54 KB
12 Jan 2021 12.09 AM
root / root
0644
gdfontl.h
0.538 KB
12 Jan 2021 12.09 AM
root / root
0644
gdfontmb.h
0.507 KB
12 Jan 2021 12.09 AM
root / root
0644
gdfonts.h
0.503 KB
12 Jan 2021 12.09 AM
root / root
0644
gdfontt.h
0.533 KB
12 Jan 2021 12.09 AM
root / root
0644
gdfx.h
0.484 KB
21 Feb 2021 5.23 PM
root / root
0644
gdpp.h
50.729 KB
3 Mar 2021 7.15 AM
root / root
0644
getopt.h
1.435 KB
3 Aug 2026 10.11 AM
root / root
0644
gettext-po.h
15.184 KB
27 Sep 2023 6.52 AM
root / root
0644
glob.h
7.128 KB
3 Aug 2026 10.11 AM
root / root
0644
gnu-versions.h
2.288 KB
3 Aug 2026 10.11 AM
root / root
0644
gnumake.h
2.844 KB
3 Jan 2020 7.11 AM
root / root
0644
gpg-error.h
71.925 KB
9 Feb 2022 11.24 PM
root / root
0644
gpgrt.h
71.925 KB
9 Feb 2022 11.24 PM
root / root
0644
grp.h
6.53 KB
3 Aug 2026 10.11 AM
root / root
0644
gshadow.h
4.423 KB
3 Aug 2026 10.12 AM
root / root
0644
gssapi.h
0.177 KB
10 Jul 2023 8.58 PM
root / root
0644
iconv.h
1.814 KB
3 Aug 2026 10.11 AM
root / root
0644
idn-free.h
2.557 KB
22 Jul 2021 1.31 PM
root / root
0644
idn-int.h
0.02 KB
20 Dec 2022 4.04 PM
root / root
0644
idna.h
3.888 KB
22 Jul 2021 1.31 PM
root / root
0644
ieee754.h
4.801 KB
3 Aug 2026 10.11 AM
root / root
0644
ifaddrs.h
2.774 KB
3 Aug 2026 10.12 AM
root / root
0644
inttypes.h
8.142 KB
3 Aug 2026 10.11 AM
root / root
0644
jconfig-64.h
1.981 KB
1 Apr 2024 7.06 PM
root / root
0644
jconfig.h
0.24 KB
1 Apr 2024 7.06 PM
root / root
0644
jerror.h
15.347 KB
25 Nov 2020 3.56 AM
root / root
0644
jmorecfg.h
13.981 KB
25 Nov 2020 3.56 AM
root / root
0644
jpegint.h
15.253 KB
25 Nov 2020 3.56 AM
root / root
0644
jpeglib.h
49.103 KB
25 Nov 2020 3.56 AM
root / root
0644
kdb.h
62.825 KB
20 May 2026 11.46 PM
root / root
0644
keyutils.h
11.52 KB
5 Apr 2023 7.15 PM
root / root
0644
krad.h
8.724 KB
10 Jul 2023 8.58 PM
root / root
0644
krb5.h
0.393 KB
10 Jul 2023 8.58 PM
root / root
0644
langinfo.h
17.431 KB
3 Aug 2026 10.11 AM
root / root
0644
lastlog.h
0.123 KB
3 Aug 2026 10.12 AM
root / root
0644
libaio.h
8.755 KB
9 Feb 2022 7.07 PM
root / root
0644
libgen.h
1.354 KB
3 Aug 2026 10.11 AM
root / root
0644
libintl.h
4.473 KB
3 Aug 2026 10.11 AM
root / root
0644
limits.h
5.572 KB
3 Aug 2026 10.11 AM
root / root
0644
link.h
7.618 KB
3 Aug 2026 10.12 AM
root / root
0644
lmdb.h
72.279 KB
16 Mar 2021 4.41 PM
root / root
0644
locale.h
7.495 KB
3 Aug 2026 10.11 AM
root / root
0644
ltdl.h
5.575 KB
1 Oct 2024 5.49 PM
root / root
0644
lzma.h
9.635 KB
17 Mar 2020 2.28 PM
root / root
0644
malloc.h
5.773 KB
3 Aug 2026 10.11 AM
root / root
0644
math.h
47.63 KB
3 Aug 2026 10.11 AM
root / root
0644
maxminddb.h
8.343 KB
18 Feb 2021 5.04 PM
root / root
0644
maxminddb_config-64.h
0.492 KB
1 Oct 2024 4.54 PM
root / root
0644
maxminddb_config.h
0.174 KB
1 Oct 2024 4.54 PM
root / root
0644
mcheck.h
2.378 KB
3 Aug 2026 10.11 AM
root / root
0644
memory.h
0.934 KB
3 Aug 2026 10.11 AM
root / root
0644
menu.h
11.597 KB
21 Sep 2025 9.23 AM
root / root
0644
mntent.h
3.28 KB
3 Aug 2026 10.11 AM
root / root
0644
monetary.h
1.92 KB
3 Aug 2026 10.11 AM
root / root
0644
mqueue.h
4.495 KB
3 Aug 2026 10.11 AM
root / root
0644
nc_tparm.h
4.665 KB
21 Sep 2025 9.23 AM
root / root
0644
ncurses.h
96.823 KB
21 Sep 2025 9.23 AM
root / root
0644
ncurses_dll.h
3.948 KB
21 Sep 2025 9.23 AM
root / root
0644
ndbm.h
2.386 KB
2 Jan 2022 8.34 AM
root / root
0644
netdb.h
27.794 KB
3 Aug 2026 10.12 AM
root / root
0644
nl_types.h
1.712 KB
3 Aug 2026 10.11 AM
root / root
0644
nss.h
14.07 KB
3 Aug 2026 10.12 AM
root / root
0644
obstack.h
20.808 KB
3 Aug 2026 10.11 AM
root / root
0644
panel.h
4.406 KB
21 Sep 2025 9.23 AM
root / root
0644
paths.h
2.907 KB
3 Aug 2026 10.11 AM
root / root
0644
pcre.h
30.975 KB
2 Oct 2024 9.53 PM
root / root
0644
pcre2.h
46.149 KB
2 Oct 2024 9.57 PM
root / root
0644
pcre2posix.h
6.521 KB
20 Aug 2021 4.51 PM
root / root
0644
pcre_scanner.h
6.445 KB
31 Jan 2014 2.32 PM
root / root
0644
pcre_stringpiece.h
6.164 KB
2 Oct 2024 9.53 PM
root / root
0644
pcrecpp.h
25.907 KB
31 Jan 2014 2.32 PM
root / root
0644
pcrecpparg.h
6.624 KB
2 Oct 2024 9.53 PM
root / root
0644
pcreposix.h
5.743 KB
2 Oct 2024 9.53 PM
root / root
0644
png.h
139.512 KB
14 Apr 2019 6.10 PM
root / root
0644
pngconf.h
22.311 KB
14 Apr 2019 6.10 PM
root / root
0644
pnglibconf.h
7.427 KB
25 Jun 2026 12.19 AM
root / root
0644
poll.h
0.021 KB
3 Aug 2026 10.11 AM
root / root
0644
powercap.h
1.621 KB
11 Sep 2026 1.33 PM
root / root
0644
pr29.h
2.189 KB
22 Jul 2021 1.31 PM
root / root
0644
printf.h
6.714 KB
3 Aug 2026 10.11 AM
root / root
0644
proc_service.h
3.396 KB
3 Aug 2026 10.12 AM
root / root
0644
profile.h
11.869 KB
20 May 2026 11.47 PM
root / root
0644
pthread.h
47.387 KB
3 Aug 2026 10.11 AM
root / root
0644
pty.h
1.533 KB
3 Aug 2026 10.12 AM
root / root
0644
punycode.h
9.3 KB
22 Jul 2021 1.31 PM
root / root
0644
pwd.h
6.169 KB
3 Aug 2026 10.11 AM
root / root
0644
re_comp.h
0.94 KB
3 Aug 2026 10.11 AM
root / root
0644
regex.h
25.297 KB
3 Aug 2026 10.11 AM
root / root
0644
regexp.h
1.414 KB
3 Aug 2026 10.11 AM
root / root
0644
resolv.h
12.097 KB
3 Aug 2026 10.12 AM
root / root
0644
sched.h
4.92 KB
3 Aug 2026 10.11 AM
root / root
0644
search.h
5.322 KB
3 Aug 2026 10.11 AM
root / root
0644
semaphore.h
3.383 KB
3 Aug 2026 10.11 AM
root / root
0644
setjmp.h
3.115 KB
3 Aug 2026 10.11 AM
root / root
0644
sgtty.h
1.313 KB
3 Aug 2026 10.11 AM
root / root
0644
shadow.h
5.344 KB
3 Aug 2026 10.12 AM
root / root
0644
signal.h
12.734 KB
3 Aug 2026 10.11 AM
root / root
0644
spawn.h
8.103 KB
3 Aug 2026 10.11 AM
root / root
0644
stab.h
0.258 KB
3 Aug 2026 10.11 AM
root / root
0644
stdc-predef.h
2.236 KB
3 Aug 2026 10.11 AM
root / root
0644
stdint.h
8.275 KB
3 Aug 2026 10.11 AM
root / root
0644
stdio.h
30.675 KB
3 Aug 2026 10.11 AM
root / root
0644
stdio_ext.h
2.734 KB
3 Aug 2026 10.11 AM
root / root
0644
stdlib.h
35.465 KB
3 Aug 2026 10.11 AM
root / root
0644
string.h
19.003 KB
3 Aug 2026 10.11 AM
root / root
0644
stringprep.h
9.529 KB
22 Jul 2021 1.44 PM
root / root
0644
strings.h
4.642 KB
3 Aug 2026 10.11 AM
root / root
0644
syscall.h
0.024 KB
3 Aug 2026 10.11 AM
root / root
0644
sysexits.h
5.109 KB
3 Aug 2026 10.11 AM
root / root
0644
syslog.h
0.023 KB
3 Aug 2026 10.11 AM
root / root
0644
tar.h
3.697 KB
3 Aug 2026 10.11 AM
root / root
0644
term.h
40.951 KB
21 Sep 2025 9.23 AM
root / root
0644
term_entry.h
8.896 KB
21 Sep 2025 9.23 AM
root / root
0644
termcap.h
3.393 KB
21 Sep 2025 9.23 AM
root / root
0644
termio.h
0.209 KB
3 Aug 2026 10.11 AM
root / root
0644
termios.h
3.515 KB
3 Aug 2026 10.11 AM
root / root
0644
tgmath.h
39.238 KB
3 Aug 2026 10.11 AM
root / root
0644
thread_db.h
15.648 KB
3 Aug 2026 10.12 AM
root / root
0644
threads.h
7.506 KB
3 Aug 2026 10.11 AM
root / root
0644
tic.h
14.482 KB
21 Sep 2025 9.23 AM
root / root
0644
tiff.h
46.332 KB
22 Apr 2022 4.51 PM
root / root
0644
tiffconf-64.h
3.189 KB
21 Jul 2026 3.53 PM
root / root
0644
tiffconf.h
0.244 KB
21 Jul 2026 3.54 PM
root / root
0644
tiffio.h
24.128 KB
20 May 2022 3.32 PM
root / root
0644
tiffio.hxx
1.619 KB
19 Feb 2022 3.33 PM
root / root
0644
tiffvers.h
0.4 KB
20 May 2022 4.12 PM
root / root
0644
time.h
14.5 KB
3 Aug 2026 10.11 AM
root / root
0644
tld.h
4.847 KB
22 Jul 2021 1.31 PM
root / root
0644
ttyent.h
2.436 KB
3 Aug 2026 10.11 AM
root / root
0644
uchar.h
1.955 KB
3 Aug 2026 10.11 AM
root / root
0644
ucontext.h
1.989 KB
3 Aug 2026 10.11 AM
root / root
0644
ulimit.h
1.547 KB
3 Aug 2026 10.11 AM
root / root
0644
unctrl.h
3.103 KB
21 Sep 2025 9.23 AM
root / root
0644
unistd.h
43.446 KB
3 Aug 2026 10.11 AM
root / root
0644
utime.h
1.86 KB
3 Aug 2026 10.11 AM
root / root
0644
utmp.h
3.147 KB
3 Aug 2026 10.12 AM
root / root
0644
utmpx.h
4.004 KB
3 Aug 2026 10.12 AM
root / root
0644
values.h
1.91 KB
3 Aug 2026 10.11 AM
root / root
0644
verto-module.h
6.484 KB
10 Feb 2022 4.33 AM
root / root
0644
verto.h
18.981 KB
10 Feb 2022 4.33 AM
root / root
0644
wait.h
0.021 KB
3 Aug 2026 10.11 AM
root / root
0644
wchar.h
31.389 KB
3 Aug 2026 10.11 AM
root / root
0644
wctype.h
5.419 KB
3 Aug 2026 10.11 AM
root / root
0644
wordexp.h
2.443 KB
3 Aug 2026 10.11 AM
root / root
0644
zconf.h
15.881 KB
26 Sep 2023 9.22 AM
root / root
0644
zlib.h
94.005 KB
26 Sep 2023 9.22 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF