将原有的测试文件移动到专门的返回值测试目录(return_val_cases)中, 同时添加了标准输出测试目录(stdout_val_cases),新增了参数传递测试用例 和标准输出测试用例,使测试结构更加清晰和模块化。
8 lines
122 B
C
8 lines
122 B
C
#ifndef __SCC_STDIO_H__
|
|
#define __SCC_STDIO_H__
|
|
|
|
extern int puts(const char *str);
|
|
extern char *gets(char *buff);
|
|
|
|
#endif
|