2010-03-22 07:49:57 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2010-03-22 07:49:57 +08:00
|
|
|
*
|
2018-10-14 19:28:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2010-03-22 07:49:57 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2010-03-22 Bernard first version
|
|
|
|
*/
|
2009-07-03 06:48:23 +08:00
|
|
|
#include <finsh.h>
|
|
|
|
|
|
|
|
#ifndef __FINSH_HEAP_H__
|
|
|
|
#define __FINSH_HEAP_H__
|
|
|
|
|
|
|
|
int finsh_heap_init(void);
|
|
|
|
void* finsh_heap_allocate(size_t size);
|
|
|
|
void finsh_heap_free(void*ptr);
|
|
|
|
|
|
|
|
#endif
|