hollyhock
mem.hpp
Go to the documentation of this file.
1 
8 #pragma once
9 #include <stdint.h>
10 
16 extern "C"
17 void free(void *ptr);
18 
27 extern "C"
28 void *malloc(uint32_t size);
29 
41 extern "C"
42 void *memcpy(void *destination, const void *source, int num);
43 
56 extern "C"
57 void *memset(void *ptr, int value, int num);
void * memset(void *ptr, int value, int num)
void * malloc(uint32_t size)
void * memcpy(void *destination, const void *source, int num)
void free(void *ptr)