EHS/include/Util.h
2023-12-17 03:29:08 -08:00

17 lines
302 B
C++

#pragma once
#include "Types.h"
namespace lwe
{
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);
};
}