From 83d870e58457a1d335a1d9b9966a6a1887cc297b Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 24 Nov 2025 03:02:43 +0100 Subject: feat! breaking changes on kernel sources. Signed-off-by: Amlal El Mahrouss --- dev/libSystem/src/Utils.cc | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 dev/libSystem/src/Utils.cc (limited to 'dev/libSystem/src/Utils.cc') diff --git a/dev/libSystem/src/Utils.cc b/dev/libSystem/src/Utils.cc deleted file mode 100644 index 9d0920e0..00000000 --- a/dev/libSystem/src/Utils.cc +++ /dev/null @@ -1,29 +0,0 @@ -/* ======================================== - - Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ - -#include -#include -#include -#include - -using namespace LibSystem; - -/// @note This uses the FNV 64-bit variant. -IMPORT_C UInt64 libsys_hash_64(const Char* path) { - if (!path || *path == 0) return 0; - - const UInt64 kFNVSeed = 0xcbf29ce484222325ULL; - const UInt64 kFNVPrime = 0x100000001b3ULL; - - UInt64 hash = kFNVSeed; - - while (*path) { - hash ^= (Char) (*path++); - hash *= kFNVPrime; - } - - return hash; -} -- cgit v1.2.3