📄 common.h
字号:
#ifndef __COMMON_H__
#define __COMMON_H__
/* include */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <math.h>
/* some define type */
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
/* state type of server */
#define SERVER_IDLE 0
#define SERVER_BUSY 1
/* output type */
#define Pf_type 254
#define Pb_type 255
/* max base stations */
#define MAX_BS 16
#endif /* __COMMON_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -