Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
php56 /
include /
libhashkit-1.0 /
Delete
Unzip
Name
Size
Permission
Date
Action
algorithm.h
2.74
KB
-rw-r--r--
2024-10-29 09:28
behavior.h
1.8
KB
-rw-r--r--
2024-10-29 09:28
configure.h
1.85
KB
-rw-r--r--
2024-10-29 09:28
digest.h
2.08
KB
-rw-r--r--
2024-10-29 09:28
function.h
2.53
KB
-rw-r--r--
2024-10-29 09:28
has.h
1.84
KB
-rw-r--r--
2024-10-29 09:28
hashkit.h
3.18
KB
-rw-r--r--
2024-10-29 09:28
hashkit.hpp
2.73
KB
-rw-r--r--
2024-10-29 09:28
str_algorithm.h
1.77
KB
-rw-r--r--
2024-10-29 09:28
strerror.h
1.84
KB
-rw-r--r--
2024-10-29 09:28
string.h
2.04
KB
-rw-r--r--
2024-10-29 09:28
types.h
2.97
KB
-rw-r--r--
2024-10-29 09:28
visibility.h
1.25
KB
-rw-r--r--
2024-10-29 09:28
Save
Rename
/* * Summary: interface for HashKit functions * Description: visibitliy macros for HashKit library * * Use and distribution licensed under the BSD license. See * the COPYING file in this directory for full text. * * Author: Monty Taylor */ /** * @file * @brief Visibility control macros */ #pragma once /** * * HASHKIT_API is used for the public API symbols. It either DLL imports or * DLL exports (or does nothing for static build). * * HASHKIT_LOCAL is used for non-api symbols. */ #if defined(BUILDING_HASHKIT) # if defined(HAVE_VISIBILITY) && HAVE_VISIBILITY # define HASHKIT_API __attribute__ ((visibility("default"))) # define HASHKIT_LOCAL __attribute__ ((visibility("hidden"))) # elif defined (__SUNPRO_C) && (__SUNPRO_C >= 0x550) # define HASHKIT_API __global # define HASHKIT_LOCAL __hidden # elif defined(_MSC_VER) # define HASHKIT_API extern __declspec(dllexport) # define HASHKIT_LOCAL # else # define HASHKIT_API # define HASHKIT_LOCAL # endif /* defined(HAVE_VISIBILITY) */ #else /* defined(BUILDING_HASHKIT) */ # if defined(_MSC_VER) # define HASHKIT_API extern __declspec(dllimport) # define HASHKIT_LOCAL # else # define HASHKIT_API # define HASHKIT_LOCAL # endif /* defined(_MSC_VER) */ #endif /* defined(BUILDING_HASHKIT) */