?? error.c
字號:
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include "Error.h"
#include "Debug.h"
#include "GenCode.h"
extern char *yytext;
extern int *yylineno;
void parse_error(char *info, char *info1)
{
static char buf[255];
sprintf(buf, "%s%s", info, info1);
yyerror( buf );
}
void yyerror(char *info)
{
printf("%d", yylineno);
putchar(' ');
putchar(':');
putchar(' ');
puts(info);
// getch();
}
void user_exit(int status)
{
remove_all_tmp();
exit(status);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -