declare.h

来自「一个典型的小区消息管理系统」· C头文件 代码 · 共 24 行

H
24
字号
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<conio.h>


#define MAX_MENU_LEN  100
#define MAX_MSG_LEN   100
#define MAX_USER_LEN  100
#define MAX_INFO_NUM  100   
#define MAX_INFO_NUM  100          //收件箱/发件箱的最大容量
#define MAX_INFO_SMY_LEN 20      //信件内容摘要的最大长度 
#define MAX_INFO_LEN     500    //信件的最大长度
  
#define  CLS     system("cls.exe")
#define  WAIT    system("pause")
#define WARN		"【警告】"	// 屏幕消息函数参数
#define INFO		"【信息】"
#define TIP			"【提示】"
#define ERROR		"【错误】"
#define WC			"wait and cls"
#define W			"wait"
#define C			"cls"

⌨️ 快捷键说明

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