📄 xstdlib.h
字号:
/* xstdlib.h: has standard library function prototypes */#ifndef XSTDLIB_H#define XSTDLIB_H#include <sys/types.h>/* Prototypes for standard library functions */extern char *calloc();extern void exit();extern char *getenv();extern char *index();extern char *malloc();extern char *strchr();extern char *strrchr();#define remove unlink#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -