Files
comaps/libs/coding/reader_writer_ops.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

12 lines
243 B
C++

#pragma once
#include "coding/reader.hpp"
#include "coding/writer.hpp"
namespace rw_ops
{
/// Do reverse bytes.
/// Note! src and dest should be for different entities.
void Reverse(Reader const & src, Writer & dest);
} // namespace rw_ops