文件名称:cstring:简单的 C 字符串操作函数
文件大小:9KB
文件格式:ZIP
更新时间:2024-07-23 23:37:19
C
字符串 该项目是为学习目的而开发的。 我开发这个用于 c 字符串操作的实验。 如果您想使用此代码,请自行承担风险。 用法 代码示例 创建字符串 #include "cstring.h" //.... t_cstring *s = cstring_create(); 将初始值添加到字符串 cstring_assign(s, "This is a fake message. "); // or cstring_add(s, "This is a fake message. "); 串联字符串 cstring_add(s, "This part will be joined. "); 使用后释放内存 cstring_delete(s);
【文件预览】:
cstring-master
----.gitignore(27B)
----LICENSE(18KB)
----README.md(585B)
----cstring.c(764B)
----main.c(664B)
----cstring.h(1KB)