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

📄 common.h

📁 comer s TCPIP-vol3源代码...当然是经典咯
💻 H
字号:
/* common.h - min, max */#ifndef COMMON_H#define COMMON_H#include <arpa/inet.h>#include <fcntl.h>#include <linux/soundcard.h>#include <math.h>#include <netinet/in.h>#include <pthread.h>#include <semaphore.h>#include <stdlib.h>#include <strings.h>#include <sys/ioctl.h>#include <sys/socket.h>#include <sys/time.h>#include <sys/types.h>#include <time.h>#include <unistd.h>typedef char           bool;#define TRUE	  1#define FALSE	  0#define OK	  0#define ERROR	 -1#define min(a, b) (a < b ? a : b)#define max(a, b) (a > b ? a : b)#endif

⌨️ 快捷键说明

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