public.h

来自「在Linux下使用GCC编制的FTP服务器」· C头文件 代码 · 共 49 行

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