?? myerr.h
字號:
/* This file comes from APUE, slightly edited by NetXRay@byhh */#ifndef MYERR_H#define MYERR_H#include <stdio.h>#include <stdlib.h>#include <string.h>#include <errno.h> /* for definition of errno */#include <stdarg.h> /* ANSI C header file */void err_dump(const char *, ...);void err_msg(const char *, ...);void err_quit(const char *, ...);void err_ret(const char *, ...);void err_sys(const char *, ...);#endif /* MYERR_H*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -