Go to the source code of this file.
Detailed Description
- Author:
- Nathan Miller
- Version:
- 1.1
Function Documentation
void byteswap |
( |
void * |
in, |
|
|
void * |
out, |
|
|
u16 |
size |
|
) |
| |
DESCRIPTION
Byteswap data in
and store it in location out
.
DETAILS
- Parameters:
-
[in] | void | *in - byte pointer to the data to be byteswapped. |
[out] | void | *out - byte pointer to the memory to store the result. |
[in] | u16 | size - the size of the data to byteswap in bytes. |
NOTES
None
void byteswap_inplace |
( |
void * |
data, |
|
|
u16 |
size |
|
) |
| |
DESCRIPTION
Byteswap a memory location in place.
DETAILS
- Parameters:
-
[in,out] | void | *data - byte pointer to the data to byteswap. |
[in] | u16 | size - the size of the data to byteswap in bytes. |
NOTES
None