EHS/include/Util.h

17 lines
302 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 IsEqual(const void* const a, const void* const b, const UInt_64 size);
static void Copy(void* const out, const void* const in, const UInt_64 size);
static void Zero(void* const in, const UInt_64 size);
};
}