mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-04-04 21:14:58 -07:00
13 lines
274 B
C++
13 lines
274 B
C++
#pragma once
|
|
|
|
#include "EHS.h"
|
|
|
|
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);
|
|
}; |