From 51cd08296f618a8c2b25aa4f31f584d98024896a Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Thu, 9 Oct 2025 16:58:41 +0200 Subject: [PATCH] package lines for core:hash --- core/hash/xxhash/common.odin | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/core/hash/xxhash/common.odin b/core/hash/xxhash/common.odin index 636393b52..a0f26fe4e 100644 --- a/core/hash/xxhash/common.odin +++ b/core/hash/xxhash/common.odin @@ -1,3 +1,8 @@ +// package xxhash implements Yann Collet's xxhash. +// +// [[ xxhash Fast Hash Algorithm; https://cyan4973.github.io/xxHash/ ]] +package xxhash + /* Copyright 2021 Jeroen van Rijn . @@ -7,9 +12,6 @@ Jeroen van Rijn: Initial implementation. */ -// An implementation of Yann Collet's [[ xxhash Fast Hash Algorithm; https://cyan4973.github.io/xxHash/ ]]. -package xxhash - import "base:intrinsics" import "base:runtime"