mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
14 lines
270 B
C++
14 lines
270 B
C++
#ifndef INCLUDED_BYTESWAP_H
|
|
#define INCLUDED_BYTESWAP_H
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
namespace Util
|
|
{
|
|
void FlipEndian16(uint8_t *buffer, size_t size);
|
|
void FlipEndian32(uint8_t *buffer, size_t size);
|
|
} // Util
|
|
|
|
#endif // INCLUDED_BYTESWAP_H
|