Codechange: make md5sumToString std::string compatible

This commit is contained in:
Rubidium
2023-04-27 22:18:53 +02:00
committed by rubidium42
parent 51c6b8c1e4
commit a312a6c1b2
12 changed files with 24 additions and 54 deletions

View File

@@ -86,7 +86,7 @@ static inline size_t ttd_strnlen(const char *str, size_t maxlen)
return t - str;
}
char *md5sumToString(char *buf, const char *last, const uint8 md5sum[16]);
std::string MD5SumToString(const uint8 md5sum[16]);
bool IsValidChar(WChar key, CharSetFilter afilter);