XFusion API v1.3.0
载入中...
搜索中...
未找到
xf_stdlib.h
浏览该文件的文档.
1
12#ifndef __XF_STDLIB_H__
13#define __XF_STDLIB_H__
14
15/* ==================== [Includes] ========================================== */
16
17#include "xf_std_config.h"
18
19#if XF_STDLIB_IS_ENABLE
20# include <stdlib.h>
21#endif
22
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/* ==================== [Defines] =========================================== */
37
38#define xf_malloc(x) xf_user_malloc(x)
39#define xf_free(x) xf_user_free(x)
40
41/* ==================== [Typedefs] ========================================== */
42
43/* ==================== [Global Prototypes] ================================= */
44
45/* ==================== [Macros] ============================================ */
46
47#ifdef __cplusplus
48} /* extern "C" */
49#endif
50
56#endif // __XF_STDLIB_H__
xf_utils 封装标准库的配置。