代币C中的快速字符串标记器库。线程安全。不修改原始字符串。API文档位于tokenz.h头文件中。包括在您的项目中只需将tokenz.h文件包含在要使用它的文件中,并使用tokenz.c编译您的项目。strtok替换函数'tokenz'示例: char *string = \"Hello, there; Lol.\"; char *delims = \",.;\"; for (struct token t = tokenz(string, delims); t.end != NULL; t = tokenz(t.end, delims)) tokprintln(&t);
输出:Hello there Lol
使用函数'tokenzs'通过字符串分隔符进行标记的示例。
tokenz:快速通用使用字符串标记器库
文件列表
tokenz-master.zip
(预估有个12文件)
tokenz-master
README.md
1KB
LICENSE
11KB
tokenz.c
4KB
example
ex_tokcat.c
765B
ex_tokstr.c
631B
ex_toknstr.c
519B
ex_tokncat.c
661B
ex_tokenzc.c
363B
暂无评论