📄 common.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 + -