加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.c 293 Bytes
一键复制 编辑 原始数据 按行查看 历史
RiceChen 提交于 2023-08-14 16:54 . [update]完善日志组件的逻辑
#include "rlog.h"
int main()
{
rlog_init();
rlog_enable(true);
rlog_color_enable(true);
rlog_level_fmt_set(RLOG_LVL_INFO, RLOG_FMT_ALL);
rlog_print("RiceChen\r\n");
rlog_i("RiceChen");
rlog_hexdump_print("rice", "RiceChen", strlen("RiceChen"));
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化