Cleanup: remove MD5SumToString in lieu of FormatArrayAsHex

This commit is contained in:
Rubidium
2023-05-18 22:41:42 +02:00
committed by rubidium42
parent d9a04ba446
commit acec34a0fe
15 changed files with 15 additions and 29 deletions

View File

@@ -29,7 +29,6 @@
#include "core/bitmath_func.hpp"
#include "core/span_type.hpp"
#include "string_type.h"
#include "3rdparty/md5/md5.h"
char *strecat(char *dst, const char *src, const char *last) NOACCESS(3);
char *strecpy(char *dst, const char *src, const char *last) NOACCESS(3);
@@ -91,8 +90,6 @@ static inline size_t ttd_strnlen(const char *str, size_t maxlen)
return t - str;
}
std::string MD5SumToString(const MD5Hash &md5sum);
bool IsValidChar(WChar key, CharSetFilter afilter);
size_t Utf8Decode(WChar *c, const char *s);