⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xstdlib.h

📁 Porting the Simple Sockets Library Dr. Charles E. Campbell, Jr.
💻 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 + -