MPKArena - MPKArena functional interface.| void* | mpkMalloc(size_t size); |
| void | mpkFree(void* ptr); |
| void* | mpkCalloc(size_t nelem, size_t elsize); |
| void* | mpkRealloc(void* ptr, size_t size); |
| char* | mpkStrDup(const char* s1); |
MPKGlobal).size bytes suitably aligned for any use.nelem elements of size elsize. The space is initialized to zeros.ptr to size bytes and returns a pointer to the (possibly moved) block. The contents will be unchanged up to the lesser of the new and old sizes.MPKGlobal