/
niceSOFT
/
xxhash
Обзор
Документация
Войти
/
niceSOFT
/
xxhash
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
tests/test_alias.c
18 строк
394 B
Yann Collet
added test_alias
19 июн 2025, 02:52
19 июн 2025, 02:52
2d94529
Код
Авторство
О чём код?
#define XXH_INLINE_ALL #include <inttypes.h> #include <stdio.h> #include "xxhash.h" int main() { // it seems this has to be exactly 24 bytes. union { char x[24]; // force 8-byte alignment without making // aliasable with uint64_t. void *y[3]; } data = {.x = "garblegarblegarblegarble"}; uint64_t hash = XXH64(&data, sizeof(data), 0); printf("%016"PRIx64"\n", hash); return 0; }