EHS
Loading...
Searching...
No Matches
Util.h
Go to the documentation of this file.
1#pragma once
2
3#include "Types.h"
4
5namespace ehs
6{
7 class EHS_LIB_IO Util
8 {
9 public:
10 static bool Compare(const void* a, const void* b, UInt_64 size);
11
12 static void Copy(void* out, const void* in, UInt_64 size);
13
14 static void Fill(void* out, UInt_64 outSize, const void* in, UInt_64 inSize);
15
16 static void Zero(void* in, UInt_64 size);
17 };
18}
Definition Util.h:8
static void Fill(void *out, UInt_64 outSize, const void *in, UInt_64 inSize)
Definition Util.cpp:100
static void Copy(void *out, const void *in, UInt_64 size)
Definition Util.cpp:67
static void Zero(void *in, UInt_64 size)
Definition Util.cpp:109
static bool Compare(const void *a, const void *b, UInt_64 size)
Definition Util.cpp:9
Definition Anchor.h:6