// SPDX-License-Identifier: Apache-2.0 OR MIT
// SPDX-FileCopyrightText: Copyright (C) 2024 Tsukasa OI <floss_ssdeep@irq.a4lg.com>
//! Private bit-manipulation operations
/// Swaps each nibble in the byte.
///
/// This function swaps upper 4 bits (the upper nibble) and lower 4 bits
/// (the lower nibble).
/// Naïve bit manipulation implementations.