代码拉取完成,页面将自动刷新
// Copyright 2012 Rui Ueyama. Released under the MIT license.
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#include "8cc.h"
bool enable_warning = true;
bool warning_is_error = false;
static void print_error(char *line, char *pos, char *label, char *fmt, va_list args) {
fprintf(stderr, isatty(fileno(stderr)) ? "\e[1;31m[%s]\e[0m " : "[%s] ", label);
fprintf(stderr, "%s: %s: ", line, pos);
vfprintf(stderr, fmt, args);
fprintf(stderr, "\n");
}
void errorf(char *line, char *pos, char *fmt, ...) {
va_list args;
va_start(args, fmt);
print_error(line, pos, "ERROR", fmt, args);
va_end(args);
exit(1);
}
void warnf(char *line, char *pos, char *fmt, ...) {
if (!enable_warning)
return;
char *label = warning_is_error ? "ERROR" : "WARN";
va_list args;
va_start(args, fmt);
print_error(line, pos, label, fmt, args);
va_end(args);
if (warning_is_error)
exit(1);
}
char *token_pos(Token *tok) {
File *f = tok->file;
if (!f)
return "(unknown)";
char *name = f->name ? f->name : "(unknown)";
return format("%s:%d:%d", name, tok->line, tok->column);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。