- `addrToHex` - formats an address as a hexadecimal sring - `constAddrToHex` - const variant of `addrToHex`
7 lines
120 B
C++
7 lines
120 B
C++
#pragma once
|
|
|
|
#include <format>
|
|
|
|
std::string addrToHex(void* addr);
|
|
|
|
std::string constAddrToHex(const void* addr); |