php-internal-docs 8.4.8
Unofficial docs for php/php-src
|
Topics | |
XXH32 family | |
XXH64 family | |
XXH3 family | |
Macros | |
#define | XXH_PUBLIC_API /* do nothing */ |
#define | XXH_VERSION_MAJOR 0 |
#define | XXH_VERSION_MINOR 8 |
#define | XXH_VERSION_RELEASE 1 |
#define | XXH_VERSION_NUMBER (XXH_VERSION_MAJOR *100*100 + XXH_VERSION_MINOR *100 + XXH_VERSION_RELEASE) |
Enumerations | |
enum | XXH_errorcode { XXH_OK =0 , XXH_ERROR } |
Functions | |
XXH_PUBLIC_API unsigned | XXH_versionNumber (void) |
Obtains the xxHash version. | |
typedef unsigned long long | XXH64_hash_t |
Contains details on the public xxHash functions.
#define XXH_VERSION_NUMBER (XXH_VERSION_MAJOR *100*100 + XXH_VERSION_MINOR *100 + XXH_VERSION_RELEASE) |
typedef unsigned long long XXH64_hash_t |
enum XXH_errorcode |
XXH_PUBLIC_API unsigned XXH_versionNumber | ( | void | ) |
Obtains the xxHash version.
This is mostly useful when xxHash is compiled as a shared library, since the returned value comes from the library, as opposed to header file.
XXH_VERSION_NUMBER
of the invoked library.