Thrill
0.1
|
#include <cstdint>
#include <string>
Go to the source code of this file.
Namespaces | |
tlx | |
Functions | |
Bitdump Methods | |
std::string | bitdump_le8 (const void *const data, size_t size) |
Dump a (binary) string as a sequence of 8-bit little-endian bytes. More... | |
std::string | bitdump_le8 (const std::string &str) |
Dump a (binary) string as a sequence of 8-bit little-endian bytes. More... | |
template<typename Type > | |
std::string | bitdump_le8_type (const Type &t) |
Dump a (binary) item as a sequence of 8-bit little-endian bytes. More... | |
std::string | bitdump_be8 (const void *const data, size_t size) |
Dump a (binary) string as a sequence of 8-bit big-endian bytes. More... | |
std::string | bitdump_be8 (const std::string &str) |
Dump a (binary) string as a sequence of 8-bit big-endian bytes. More... | |
template<typename Type > | |
std::string | bitdump_be8_type (const Type &t) |
Dump a (binary) item as a sequence of 8-bit big-endian bytes. More... | |