config.h

来自「编译原理的作业 编译器」· C头文件 代码 · 共 33 行

H
33
字号
#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 + =
减小字号Ctrl + -
显示快捷键?