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 : stdint.h
#ifndef _ZZIP__STDINT_H /* zzip-stdint.h */ #define _ZZIP__STDINT_H 1 /* this file ensures that we have some kind of typedef declarations for unsigned C9X typedefs. The ISO C 9X: 7.18 Integer types file is stdint.h */ #include <zzip/conf.h> /* enforce use of ifdef'd C9X entries in system headers */ #define __USE_ANSI 1 #define __USE_ISOC9X 1 #ifdef ZZIP_HAVE_STDINT_H /* ISO C 9X: 7.18 Integer types <stdint.h> */ #include <stdint.h> #elif defined ZZIP_HAVE_SYS_INT_TYPES_H /*solaris*/ #include <sys/int_types.h> #elif defined ZZIP_HAVE_INTTYPES_H /*freebsd*/ #include <inttypes.h> #else typedef unsigned char uint8_t; typedef signed char int8_t; # if ZZIP_SIZEOF_INT && ZZIP_SIZEOF_INT == 2 typedef unsigned int uint16_t; typedef signed int int16_t; # elif ZZIP_SIZEOF_SHORT && ZZIP_SIZEOF_SHORT == 2 typedef unsigned short uint16_t; typedef signed short int16_t; # else # error unable to typedef int16_t from either int or short typedef unsigned short uint16_t; typedef signed short int16_t; # endif # if defined ZZIP_SIZEOF_INT && ZZIP_SIZEOF_INT == 4 typedef unsigned int uint32_t; typedef signed int int32_t; # elif defined ZZIP_SIZEOF_LONG && ZZIP_SIZEOF_LONG == 4 typedef unsigned long uint32_t; typedef signed long int32_t; # else # error unable to typedef int32_t from either int or long typedef unsigned long uint32_t; typedef signed long int32_t; # endif typedef unsigned _zzip___int64 uint64_t; typedef _zzip___int64 int64_t; #endif #endif /*_ZZIP_STDINT_H*/
Close