📄 check_error.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -