xstdlib.h

来自「Porting the Simple Sockets Library Dr. C」· C头文件 代码 · 共 19 行

H
19
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?