HCppBox/hbox/hmemory.c
2025-04-26 20:04:31 +08:00

27 lines
472 B
C

/***************************************************************
* Name: hmemory.c
* Purpose: 实现hmemory接口
* Author: HYH (hyhsystem.cn)
* Created: 2025-04-26
* Copyright: HYH (hyhsystem.cn)
* License: MIT
**************************************************************/
#include "hmemory.h"
/*
* 堆
*/
#include "hmemory/hmemoryheap.c"
/*
* 环形缓冲区
*/
#include "hmemory/hringbuf.c"
/*
* 对象
*/
#include "hmemory/hobject.c"