18 lines
299 B
C
18 lines
299 B
C
|
|
#ifndef GEMSTONE_STD_LIB_MEM_H_
|
|
#define GEMSTONE_STD_LIB_MEM_H_
|
|
|
|
#include <def/api.h>
|
|
|
|
void heapAlloc(u32 len, u8** ptr);
|
|
|
|
void heapRealloc(u32 len, u8** ptr);
|
|
|
|
void heapFree(u8* ptr);
|
|
|
|
void copy(u8* dst, u8* src, u32 len);
|
|
|
|
void fill(u8* dst, u8 byte, u32 len);
|
|
|
|
#endif // GEMSTONE_STD_LIB_MEM_H_
|