commit bffcf038e7e3874fe39fa276ef41431af9afc1f5 Author: impressionyang Date: Tue Aug 23 23:30:21 2022 +0800 🎉 feat(init repo): first update the repo 初次提交仓库 1. 添加源文件和仓库的必要配置文件 2. 添加readme end of segment diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea353c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +build/ +bin/ +obj/ +.vscode/ +*.o diff --git a/cmd_decoder.c b/cmd_decoder.c new file mode 100644 index 0000000..e69de29 diff --git a/cmd_decoder.h b/cmd_decoder.h new file mode 100644 index 0000000..b890215 --- /dev/null +++ b/cmd_decoder.h @@ -0,0 +1,38 @@ +/** + * @file cmd_decoder.h + * @author impressionyang (impressionyang@outlook.com) + * @brief 字符串命令解析器的头文件 + * @version 0.1 + * @date 2022-08-23 + * + * @copyright Copyright (c) 2022 impressionyang + * + * @par 修改日志: + * + *
Date Version Author Description + *
2022-08-23 v1.0 impressionyang 内容 + *
+ */ +#ifndef __CMD_DECODER_H__ +#define __CMD_DECODER_H__ + +#include + +#ifdef __cplusplus ///