Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
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 /
mysql /
server /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
mysql
[ DIR ]
drwxr-xr-x
?;
private
[ DIR ]
drwxr-xr-x
big_endian.h
4.4
KB
-rw-r--r--
byte_order_generic.h
5.12
KB
-rw-r--r--
byte_order_generic_x86.h
4.18
KB
-rw-r--r--
byte_order_generic_x86_64.h
4.03
KB
-rw-r--r--
decimal.h
4.56
KB
-rw-r--r--
errmsg.h
4.31
KB
-rw-r--r--
handler_ername.h
4.34
KB
-rw-r--r--
handler_state.h
758
B
-rw-r--r--
json_lib.h
13.03
KB
-rw-r--r--
keycache.h
8.62
KB
-rw-r--r--
little_endian.h
3.49
KB
-rw-r--r--
m_ctype.h
45.99
KB
-rw-r--r--
m_string.h
8.53
KB
-rw-r--r--
ma_dyncol.h
7.85
KB
-rw-r--r--
mariadb_capi_rename.h
3.09
KB
-rw-r--r--
my_alloc.h
1.94
KB
-rw-r--r--
my_attribute.h
2.2
KB
-rw-r--r--
my_byteorder.h
1.93
KB
-rw-r--r--
my_compiler.h
5.11
KB
-rw-r--r--
my_config.h
14.38
KB
-rw-r--r--
my_dbug.h
9.5
KB
-rw-r--r--
my_decimal_limits.h
2.03
KB
-rw-r--r--
my_dir.h
3.8
KB
-rw-r--r--
my_getopt.h
5.47
KB
-rw-r--r--
my_global.h
33.48
KB
-rw-r--r--
my_list.h
1.47
KB
-rw-r--r--
my_net.h
1.98
KB
-rw-r--r--
my_pthread.h
27.54
KB
-rw-r--r--
my_sys.h
42.5
KB
-rw-r--r--
my_valgrind.h
4.16
KB
-rw-r--r--
my_xml.h
2.77
KB
-rw-r--r--
mysql.h
38.72
KB
-rw-r--r--
mysql_com.h
29
KB
-rw-r--r--
mysql_com_server.h
1.28
KB
-rw-r--r--
mysql_embed.h
1.14
KB
-rw-r--r--
mysql_time.h
2.36
KB
-rw-r--r--
mysql_version.h
1.21
KB
-rw-r--r--
mysqld_ername.h
121.04
KB
-rw-r--r--
mysqld_error.h
45.41
KB
-rw-r--r--
pack.h
1.08
KB
-rw-r--r--
sql_common.h
5.37
KB
-rw-r--r--
sql_state.h
14.49
KB
-rw-r--r--
sslopt-case.h
1.37
KB
-rw-r--r--
sslopt-longopts.h
2.48
KB
-rw-r--r--
sslopt-vars.h
1.33
KB
-rw-r--r--
typelib.h
2.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : my_list.h
/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA */ #ifndef _list_h_ #define _list_h_ #ifdef __cplusplus extern "C" { #endif typedef struct st_list { struct st_list *prev,*next; void *data; } LIST; typedef int (*list_walk_action)(void *,void *); extern LIST *list_add(LIST *root,LIST *element); extern LIST *list_delete(LIST *root,LIST *element); extern LIST *list_cons(void *data,LIST *root); extern LIST *list_reverse(LIST *root); extern void list_free(LIST *root,unsigned int free_data); extern unsigned int list_length(LIST *); extern int list_walk(LIST *,list_walk_action action,unsigned char * argument); #define list_rest(a) ((a)->next) #define list_push(a,b) (a)=list_cons((b),(a)) #define list_pop(A) {LIST *old=(A); (A)=list_delete(old,old); my_free(old); } #ifdef __cplusplus } #endif #endif
Close