diff options
| author | Dan Engelbrecht <[email protected]> | 2022-03-23 23:16:22 +0100 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-03-31 11:29:27 +0200 |
| commit | 3da85d8c5479e2d21476cc01bb628d6434d02749 (patch) | |
| tree | 1205c7c032dd7169b0d41c0297472e2dabdc4621 /zencore/include | |
| parent | reduce lock times (diff) | |
| download | zen-3da85d8c5479e2d21476cc01bb628d6434d02749.tar.xz zen-3da85d8c5479e2d21476cc01bb628d6434d02749.zip | |
Rename FormatHex to ToHex
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/include/zencore/string.h b/zencore/include/zencore/string.h index bbbb09004..013f2f568 100644 --- a/zencore/include/zencore/string.h +++ b/zencore/include/zencore/string.h @@ -553,7 +553,7 @@ ToHexBytes(const uint8_t* InputData, size_t ByteCount, char* OutString) } } -ZENCORE_API void FormatHex(uint32_t Value, char OutBlockHexString[9]); +ZENCORE_API void ToHex(uint32_t Value, char OutBlockHexString[9]); ZENCORE_API bool ParseHex(const std::string HexString, uint32_t& OutValue); ////////////////////////////////////////////////////////////////////////// |