Add files via upload

This commit is contained in:
2025-07-16 00:15:38 +08:00
committed by GitHub
parent 8f2d9ef4ad
commit dc652ffb31
30 changed files with 2875 additions and 752 deletions
+16
View File
@@ -0,0 +1,16 @@
/**
* @file string_utils.h
* @brief 字符串处理工具函数头文件
* @note 包含字符串操作相关函数声明
*/
#ifndef STRING_UTILS_H
#define STRING_UTILS_H
#include <stdbool.h>
// 字符串处理函数
void trimString(char* str); // 去除字符串首尾空白字符
bool isEmptyString(const char* str); // 检查字符串是否为空
#endif // STRING_UTILS_H