代币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'通过字符串分隔符进行标记的示例。