libraries/inc/nox/memory.h

13 lines
357 B
C
Raw Normal View History

2023-05-02 19:23:32 +00:00
// This file is part of noxos and licensed under the MIT open source license
#ifndef LIBNX_MEMORY_H
#define LIBNX_MEMORY_H
#include "nox/stdtypes.h"
void memcpy (void* source, void* destination, uint32_t num);
void memset (void* destination, uint8_t data, uint32_t num);
bool memcmp (void* a, void* b, uint32_t num);
#endif //LIBNX_MEMORY_H