IOS/KD: Implement NWC24_CHECK_MAIL_NOW

This commit is contained in:
Sketch
2023-08-14 21:02:57 -04:00
parent f2b8baa82c
commit 2154941c2c
16 changed files with 569 additions and 18 deletions

View File

@ -11,6 +11,7 @@
#include <iomanip>
#include <limits>
#include <locale>
#include <span>
#include <sstream>
#include <string>
#include <type_traits>
@ -313,4 +314,5 @@ std::string GetEscapedHtml(std::string html);
void ToLower(std::string* str);
void ToUpper(std::string* str);
bool CaseInsensitiveEquals(std::string_view a, std::string_view b);
std::string BytesToHexString(std::span<const u8> bytes);
} // namespace Common