finsh_heap.h 179 B

12345678910
  1. #include <finsh.h>
  2. #ifndef __FINSH_HEAP_H__
  3. #define __FINSH_HEAP_H__
  4. int finsh_heap_init(void);
  5. void* finsh_heap_allocate(size_t size);
  6. void finsh_heap_free(void*ptr);
  7. #endif