|
HyperDbg Debugger
|
general functions used in test project More...
#include "pch.h"Functions | |
| std::string | Uint64ToString (UINT64 Value) |
| Convert a UINT64 value to a hex string. | |
| BOOLEAN | StringReplace (std::string &Str, const std::string &From, const std::string &To) |
| Replace the first occurrence of a substring in a string. | |
| std::string | ConvertToString (CHAR *Str) |
| Convert a C-string to a std::string. | |
general functions used in test project
| std::string ConvertToString | ( | CHAR * | Str | ) |
Convert a C-string to a std::string.
| Str | the C-string to convert |
| BOOLEAN StringReplace | ( | std::string & | Str, |
| const std::string & | From, | ||
| const std::string & | To ) |
Replace the first occurrence of a substring in a string.
| Str | the string to modify |
| From | the substring to search for |
| To | the replacement substring |
| std::string Uint64ToString | ( | UINT64 | Value | ) |