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

📄 config.h

📁 编译原理的作业 编译器
💻 H
字号:
#ifndef CONFIG_H_
#define CONFIG_H_

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include "erset.h"
#include "iset.h"

/* common data definition */
typedef char				S8;
typedef unsigned char		U8;
typedef short int			S16;
typedef unsigned short int	U16;
typedef long int			S32;
typedef unsigned long int	U32;
typedef float				F32;
typedef double				F64;

#ifdef _WIN32
typedef __int64				S64;
typedef unsigned __int64	U64;
#endif

#define BUFFER_SIZE 1000
#define LINE_SIZE 500
#define FILE_NAME_LENGTH 36
#define ID_SIZE 200
#define LISTFILE_LENGTH 10000

#endif

⌨️ 快捷键说明

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