EHS/include/ehs/Util.h

19 lines
346 B
C
Raw Permalink Normal View History

2024-02-05 22:25:30 -08:00
#pragma once
#include "Types.h"
namespace ehs
{
2024-07-24 01:36:20 -07:00
class EHS_LIB_IO Util
2024-02-05 22:25:30 -08:00
{
public:
static bool Compare(const void* a, const void* b, UInt_64 size);
static void Copy(void* out, const void* in, UInt_64 size);
static void Fill(void* out, UInt_64 outSize, const void* in, UInt_64 inSize);
static void Zero(void* in, UInt_64 size);
};
}