BsMMAlloc.h 243 B

12345678910
  1. #ifndef __MMALLOC_H__
  2. #define __MMALLOC_H__
  3. void* mmalloc_new_context();
  4. void mmalloc_free_context(void* context);
  5. void* mmalloc(void* context, int size);
  6. void mmfree(void* ptr);
  7. char* mmalloc_strdup(void* context, const char* input);
  8. #endif