check_str.h
来自「一个单元测试框架,主要和应用文件一起编译运行」· C头文件 代码 · 共 19 行
H
19 行
#ifndef CHECK_STR_H#define CHECK_STR_H/* Return a string representation of the given TestResult. Return value has been malloc'd, and must be freed by the caller */char *tr_str (TestResult *tr);/* Return a string representation of the given SRunner's run statistics (% passed, num run, passed, errors, failures). Return value has been malloc'd, and must be freed by the caller*/ char *sr_stat_str (SRunner *sr);char *ck_strdup_printf (const char *fmt, ...);#endif /* CHECK_STR_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?