/// Swaps the order of contiguous bytes in a sequence of bytes that are divisible by a given
/// multiple value.
///
/// Used when encrypting and decrypting packets and data files.
///
/// # Examples
///
/// ```
/// use eolib::encrypt::swap_multiples;
///
/// let mut bytes = [10, 21, 27];
/// swap_multiples(&mut bytes, 3);
///
/// assert_eq!(bytes, [10, 27, 21]);
/// ```