tokenz:快速通用使用字符串标记器库

时间:2024-07-27 11:28:52
【文件属性】:

文件名称:tokenz:快速通用使用字符串标记器库

文件大小:10KB

文件格式:ZIP

更新时间:2024-07-27 11:28:52

C

代币 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); /* Output: Hello there Lol */ 使用函数 'tokenzs' 通过字符串分隔符进行标记的示例 char *string = " -=


【文件预览】:
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)
--------Makefile(470B)
--------ex_tokenz.c(364B)
--------ex_tokenzs.c(363B)
----tokenz.h(4KB)

网友评论