Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
ext2fs /
Delete
Unzip
Name
Size
Permission
Date
Action
bitops.h
21.63
KB
-rw-r--r--
2021-12-30 05:54
ext2_err.h
11.63
KB
-rw-r--r--
2025-03-12 14:59
ext2_ext_attr.h
2.58
KB
-rw-r--r--
2021-12-30 05:54
ext2_fs.h
42.68
KB
-rw-r--r--
2021-12-30 05:54
ext2_io.h
5.44
KB
-rw-r--r--
2021-12-30 05:54
ext2_types-x86_64.h
4.11
KB
-rw-r--r--
2025-03-12 14:59
ext2_types.h
1.22
KB
-rw-r--r--
2025-03-12 15:00
ext2fs.h
73.24
KB
-rw-r--r--
2025-03-12 14:59
ext3_extents.h
4.45
KB
-rw-r--r--
2021-12-30 05:54
hashmap.h
1.16
KB
-rw-r--r--
2021-12-30 05:54
qcow2.h
2.53
KB
-rw-r--r--
2021-12-30 05:54
tdb.h
8.66
KB
-rw-r--r--
2021-12-30 05:54
Save
Rename
#ifndef HASHMAP_H # define HASHMAP_H # include <stdlib.h> # include <stdint.h> #ifndef __GNUC_PREREQ #if defined(__GNUC__) && defined(__GNUC_MINOR__) #define __GNUC_PREREQ(maj, min) \ ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) #else #define __GNUC_PREREQ(maj, min) 0 #endif #endif struct ext2fs_hashmap; struct ext2fs_hashmap_entry { void *data; const void *key; size_t key_len; struct ext2fs_hashmap_entry *next; struct ext2fs_hashmap_entry *list_next; struct ext2fs_hashmap_entry *list_prev; }; struct ext2fs_hashmap *ext2fs_hashmap_create( uint32_t(*hash_fct)(const void*, size_t), void(*free_fct)(void*), size_t size); int ext2fs_hashmap_add(struct ext2fs_hashmap *h, void *data, const void *key,size_t key_len); void *ext2fs_hashmap_lookup(struct ext2fs_hashmap *h, const void *key, size_t key_len); void *ext2fs_hashmap_iter_in_order(struct ext2fs_hashmap *h, struct ext2fs_hashmap_entry **it); void ext2fs_hashmap_del(struct ext2fs_hashmap *h, struct ext2fs_hashmap_entry *e); void ext2fs_hashmap_free(struct ext2fs_hashmap *h); uint32_t ext2fs_djb2_hash(const void *str, size_t size); #endif /* !HASHMAP_H */