📄 includes.h
字号:
/*
Name: include.h
Copyright: Starting Line
Author:
Date: 11-11-08 23:42
Description: 包含所有预处理文件,另外定义壳函数Shell
*/
/*
TO ,这里包含所有要用的头文件,然后在每个.c文件里,我都只包含了include.h文件
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>
#include <math.h>
#include "commandType.h"
#include "LstackType.h"
#include "ErrorType.h"
#include "init.h"
#include "LineType.h"
#include "LineHis.h"
#include "cchar.h"
#include "CalType.h"
void Shell ( void );
void LstCal ( Liner * CalLine , Lstack * CalStack );//计算表达式!!!
void GuessNumber ( void );//游戏
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -