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 : write.h
#ifndef _ZZIP_WRITE_H #define _ZZIP_WRITE_H #include <zzip/lib.h> /* ........................................................................ * write support is not yet implemented * zzip/write.c */ #define ZZIP_NO_CREAT 1 ZZIP_DIR* zzip_dir_creat_ext_io(zzip_char_t* name, int o_mode, zzip_strings_t* ext, zzip_plugin_io_t io); ZZIP_DIR* zzip_dir_creat(zzip_char_t* name, int o_mode); int zzip_file_mkdir(ZZIP_DIR* dir, zzip_char_t* name, int o_mode); ZZIP_FILE* zzip_file_creat(ZZIP_DIR* dir, zzip_char_t* name, int o_mode); zzip_ssize_t zzip_file_write(ZZIP_FILE* file, const void* ptr, zzip_size_t len); ZZIP_DIR* zzip_createdir(zzip_char_t* name, int o_mode); zzip_ssize_t zzip_write(ZZIP_FILE* file, const void* ptr, zzip_size_t len); zzip_size_t zzip_fwrite(const void* ptr, zzip_size_t len, zzip_size_t multiply, ZZIP_FILE* file); #ifndef zzip_savefile #define zzip_savefile 0 #define zzip_savefile_is_null #endif #ifdef _ZZIP_NO_INLINE #define zzip_mkdir(_name_,_mode_) \ zzip_file_mkdir((zzip_savefile),(_name_),(_mode_)) #define zzip_creat(_name_,_mode_) \ zzip_file_creat((zzip_savefile),(_name_),(_mode_)) #define zzip_sync() \ { zzip_closedir((zzip_savefile)); (zzip_savefile) = 0; } #define zzip_start(_name_,_mode_,_ext_) \ { if ((zzip_savefile)) zzip_closedir((zzip_savefile)); zzip_savefile = zzip_dir_creat(_name_, _mode_,_ext_); } #else _zzip_inline static int zzip_mkdir(zzip_char_t* name, int o_mode) { return zzip_file_mkdir(zzip_savefile, name, o_mode); } _zzip_inline static ZZIP_FILE* zzip_creat(zzip_char_t* name, int o_mode) { return zzip_file_creat(zzip_savefile, name, o_mode); } #ifndef zzip_savefile_is_null _zzip_inline static void zzip_sync(void) { zzip_closedir(zzip_savefile); zzip_savefile = 0; } _zzip_inline static void zzip_mkfifo(zzip_char_t* name, int o_mode) { if ((zzip_savefile)) zzip_closedir (zzip_savefile); zzip_savefile = zzip_createdir(_name_,_mode_); } #else _zzip_inline static void zzip_sync(void) {} _zzip_inline static void zzip_mkfifo(zzip_char_t* name, int o_mode) {} #endif #endif /* _ZZIP_NO_INLINE */ #endif /* _ZZIP_WRITE_H */
Close