mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-30 04:19:59 -07:00
10 lines
144 B
C
10 lines
144 B
C
#ifndef BYTESWAP_H
|
|
#define BYTESWAP_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t swap_uint32( uint32_t val );
|
|
uint64_t swap_uint64( uint64_t val );
|
|
|
|
#endif
|