mirror of
https://github.com/MalwareTech/EDR-Preloader
synced 2026-06-08 11:40:03 +00:00
7 lines
264 B
C++
7 lines
264 B
C++
namespace SafeRuntime {
|
|
size_t strlen(const char* str);
|
|
int memcmp(const void* s1, const void* s2, size_t length);
|
|
void memcpy(void* dest, void* src, size_t length);
|
|
wchar_t towlower(wchar_t wc);
|
|
int wstring_compare_i(const wchar_t* s1, const wchar_t* s2);
|
|
}; |