check_error.h

来自「一个单元测试框架,主要和应用文件一起编译运行」· C头文件 代码 · 共 16 行

H
16
字号
#ifndef ERROR_H#define ERROR_H/* Include stdlib.h beforehand *//* Print error message and die   If fmt ends in colon, include system error information */void eprintf (const char *fmt, const char *file, int line,...);/* malloc or die */void *emalloc(size_t n);void *erealloc(void *, size_t n);#endif /*ERROR_H*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?