Thrill
0.1
|
#include <cstdint>
#include <string>
#include <vector>
Go to the source code of this file.
Namespaces | |
tlx | |
Functions | |
Hexdump Methods | |
std::string | hexdump (const void *const data, size_t size) |
Dump a (binary) string as a sequence of uppercase hexadecimal pairs. More... | |
std::string | hexdump (const std::string &str) |
Dump a (binary) string as a sequence of uppercase hexadecimal pairs. More... | |
template<typename Type > | |
std::string | hexdump_type (const Type &t) |
Dump a (binary) item as a sequence of uppercase hexadecimal pairs. More... | |
std::string | hexdump (const std::vector< char > &data) |
Dump a char vector as a sequence of uppercase hexadecimal pairs. More... | |
std::string | hexdump (const std::vector< uint8_t > &data) |
Dump a uint8_t vector as a sequence of uppercase hexadecimal pairs. More... | |
std::string | hexdump_sourcecode (const std::string &str, const std::string &var_name="name") |
Dump a (binary) string into a C source code snippet. More... | |
std::string | hexdump_lc (const void *const data, size_t size) |
Dump a (binary) string as a sequence of lowercase hexadecimal pairs. More... | |
std::string | hexdump_lc (const std::string &str) |
Dump a (binary) string as a sequence of lowercase hexadecimal pairs. More... | |
template<typename Type > | |
std::string | hexdump_lc_type (const Type &t) |
Dump a (binary) item as a sequence of lowercase hexadecimal pairs. More... | |
std::string | hexdump_lc (const std::vector< char > &data) |
Dump a char vector as a sequence of lowercase hexadecimal pairs. More... | |
std::string | hexdump_lc (const std::vector< uint8_t > &data) |
Dump a uint8_t vector as a sequence of lowercase hexadecimal pairs. More... | |
std::string | parse_hexdump (const std::string &str) |
Read a string as a sequence of hexadecimal pairs. More... | |