summaryrefslogtreecommitdiffstats
path: root/dimension/utility.c
diff options
context:
space:
mode:
authortavianator <tavianator@antimatter.localdomain>2009-10-29 12:35:32 -0400
committertavianator <tavianator@antimatter.localdomain>2009-10-29 12:35:32 -0400
commit281a8741c0407e3cc504e98dee7a1e10782b46b2 (patch)
tree03061db1b4fffc8ee5fb021ab8461b5d555e5fe5 /dimension/utility.c
parent6aced77005b10311176a53d8db9862d4fff5dbc3 (diff)
downloaddimension-281a8741c0407e3cc504e98dee7a1e10782b46b2.tar.xz
Refactor tokenizer a bit.
Diffstat (limited to 'dimension/utility.c')
-rw-r--r--dimension/utility.c36
1 files changed, 36 insertions, 0 deletions
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 <tavianator@gmail.com> *
+ * *
+ * 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 <http://www.gnu.org/licenses/>. *
+ *************************************************************************/
+
+#include "utility.h"
+#include <stdarg.h>
+#include <stdio.h>
+
+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);
+}