This repository has been archived on 2022-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
LEFTONE/util/memory/test.c

9 lines
140 B
C
Raw Normal View History

#include "./memory.h"
int main(void) {
void* ptr = memory_new(0x1);
ptr = memory_resize(ptr, 0x2);
memory_delete(ptr);
return 0;
}