EHS/include/ehs/Util.h

19 lines
335 B
C
Raw Normal View History

2023-12-17 03:29:08 -08:00
#pragma once
#include "Types.h"
2023-12-17 15:56:13 -08:00
namespace ehs
2023-12-17 03:29:08 -08:00
{
class Util
{
public:
static bool Compare(const void* a, const void* b, UInt_64 size);
2023-12-17 03:29:08 -08:00
static void Copy(void* out, const void* in, UInt_64 size);
2023-12-17 03:29:08 -08:00
static void Fill(void* out, UInt_64 outSize, const void* in, UInt_64 inSize);
static void Zero(void* in, UInt_64 size);
2023-12-17 03:29:08 -08:00
};
}