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

📄 public.h

📁 在Linux下使用GCC编制的FTP服务器
💻 H
字号:
#ifndef _PRECOMPILE_HEAD_FILE_#define _PRECOMPILE_HEAD_FILE_#include <stdlib.h> #include <stdio.h>#include <string.h>#include <time.h>#include <fcntl.h>#include <ctype.h>#include <unistd.h>#include <assert.h>#include <errno.h>#include <signal.h>#include <ctype.h>#include <stdarg.h>#include <dirent.h>#include <sys/types.h>#include <sys/stat.h>#include <sys/wait.h>#include <pthread.h>#include <string>#include <vector>	using namespace std;#ifndef MAX_PATH	#define MAX_PATH	260#endif#ifndef min	#define min(a,b) ((a)<(b)?(a):(b))#endif#ifndef max	#define max(a,b) ((a)>(b)?(a):(b))#endif#ifndef FD	typedef int FD;#endif#ifndef NDEBUG	#define	TRACE printf#else	#define TRACE #endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -