From 281a8741c0407e3cc504e98dee7a1e10782b46b2 Mon Sep 17 00:00:00 2001 From: tavianator Date: Thu, 29 Oct 2009 12:35:32 -0400 Subject: Refactor tokenizer a bit. --- dimension/utility.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 dimension/utility.c (limited to 'dimension/utility.c') diff --git a/dimension/utility.c b/dimension/utility.c new file mode 100644 index 0000000..1961d3e --- /dev/null +++ b/dimension/utility.c @@ -0,0 +1,36 @@ +/************************************************************************* + * Copyright (C) 2009 Tavian Barnes * + * * + * This file is part of Dimension. * + * * + * Dimension is free software; you can redistribute it and/or modify it * + * under the terms of the GNU General Public License as published by the * + * Free Software Foundation; either version 3 of the License, or (at * + * your option) any later version. * + * * + * Dimension is distributed in the hope that it will be useful, but * + * WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * + * General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *************************************************************************/ + +#include "utility.h" +#include +#include + +void +dmnsn_diagnostic(const char *filename, unsigned int line, unsigned int col, + const char *format, ...) +{ + va_list ap; + va_start(ap, format); + + fprintf(stderr, "%s:%u:%u: ", filename, line, col); + vfprintf(stderr, format, ap); + fprintf(stderr, "\n"); + + va_end(ap); +} -- cgit v1.2.3