10#ifndef __TAL_MEMORY_H__
11#define __TAL_MEMORY_H__
13#include "tuya_cloud_types.h"
25#define Malloc(req_size) tal_malloc(req_size)
34#define Calloc(req_count, req_size) tal_calloc(req_count, req_size)
42#define Free(ptr) tal_free(ptr)
VOID_T * tal_realloc(VOID_T *ptr, SIZE_T size)
Re-allocate the memory
VOID_T * tal_malloc(SIZE_T size)
Alloc memory of system
VOID_T tal_free(VOID_T *ptr)
Free memory of system
VOID_T * tal_calloc(SIZE_T nitems, SIZE_T size)
Allocate and clear the memory