17 lines
302 B
C++
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);
|
|
};
|
|
}
|