This commit is contained in:
RogueMaster
2022-10-07 03:12:19 -04:00
parent 599fe8c703
commit 6208620636
35 changed files with 2514 additions and 104 deletions

View File

@@ -0,0 +1,9 @@
#ifndef BYTESWAP_H
#define BYTESWAP_H
#include <stdint.h>
uint32_t swap_uint32( uint32_t val );
uint64_t swap_uint64( uint64_t val );
#endif