?? config.h
字號(hào):
#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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -