mirror of
https://github.com/HEYAHONG/HCppBox.git
synced 2025-05-09 00:21:37 +08:00
27 lines
472 B
C
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"
|
|
|