📄 cerrexit.c
字号:
/* cerrexit.c - cerrexit */#include <stdarg.h>#include <stdio.h>#include <stdlib.h>#include <termios.h>#include "local.h"/*------------------------------------------------------------------------ * cerrexit - cleanup and exit with an error message *------------------------------------------------------------------------ */intcerrexit(const char *format, ...){ va_list args; va_start(args, format); vfprintf(stderr, format, args); (void) tcsetattr(0, TCSADRAIN, &oldtty); va_end(args); exit(1);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -