Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
include /
xmltok /
[ HOME SHELL ]
Name
Size
Permission
Action
ascii.h
1.77
KB
-rw-r--r--
asciitab.h
1.72
KB
-rw-r--r--
iasciitab.h
1.79
KB
-rw-r--r--
latin1tab.h
1.77
KB
-rw-r--r--
nametab.h
6.88
KB
-rw-r--r--
utf8tab.h
1.72
KB
-rw-r--r--
xmldef.h
1.14
KB
-rw-r--r--
xmlparse.h
19.54
KB
-rw-r--r--
xmlrole.h
2.43
KB
-rw-r--r--
xmltok.h
9.81
KB
-rw-r--r--
xmltok_impl.h
665
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xmldef.h
/* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd See the file copying.txt for copying permission. */ #include <string.h> #ifdef XML_WINLIB #define WIN32_LEAN_AND_MEAN #define STRICT #include <windows.h> #define malloc(x) HeapAlloc(GetProcessHeap(), 0, (x)) #define calloc(x, y) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (x)*(y)) #define free(x) HeapFree(GetProcessHeap(), 0, (x)) #define realloc(x, y) HeapReAlloc(GetProcessHeap(), 0, x, y) #define abort() /* as nothing */ #else /* not XML_WINLIB */ #include <stdlib.h> #endif /* not XML_WINLIB */ /* This file can be used for any definitions needed in particular environments. */ /* Mozilla specific defines */ #ifdef MOZILLA_CLIENT #include "nspr.h" #define malloc(x) PR_Malloc((size_t)(x)) #define realloc(x, y) PR_Realloc((x), (size_t)(y)) #define calloc(x, y) PR_Calloc((x),(y)) #define free(x) PR_Free(x) #if PR_BYTES_PER_INT != 4 #define int int32 #endif /* Enable Unicode string processing in expat. */ #ifndef XML_UNICODE #define XML_UNICODE #endif /* Enable external parameter entity parsing in expat */ #ifndef XML_DTD #define XML_DTD 1 #endif #endif /* MOZILLA_CLIENT */
Close