// 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