1 /* 2 * Copyright (c) 2006-2018, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2010-03-22 Bernard first version 9 */ 10 #include <finsh.h> 11 12 #ifndef __FINSH_HEAP_H__ 13 #define __FINSH_HEAP_H__ 14 15 int finsh_heap_init(void); 16 void* finsh_heap_allocate(size_t size); 17 void finsh_heap_free(void*ptr); 18 19 #endif 20