mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
7 lines
168 B
C
7 lines
168 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
u16 swap16(u16 i);
|
||
|
|
u32 swap32(u32 i);
|
||
|
|
u64 swap64(u64 i);
|
||
|
|
u64 hex_to_u64(const char* hex_str);
|
||
|
|
void hex_to_bytes(unsigned char *data, const char *hex_str);
|