diff options
author | tavianator <tavianator@antimatter.localdomain> | 2009-10-29 12:35:32 -0400 |
---|---|---|
committer | tavianator <tavianator@antimatter.localdomain> | 2009-10-29 12:35:32 -0400 |
commit | 281a8741c0407e3cc504e98dee7a1e10782b46b2 (patch) | |
tree | 03061db1b4fffc8ee5fb021ab8461b5d555e5fe5 /dimension/utility.h | |
parent | 6aced77005b10311176a53d8db9862d4fff5dbc3 (diff) | |
download | dimension-281a8741c0407e3cc504e98dee7a1e10782b46b2.tar.xz |
Refactor tokenizer a bit.
Diffstat (limited to 'dimension/utility.h')
-rw-r--r-- | dimension/utility.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dimension/utility.h b/dimension/utility.h new file mode 100644 index 0000000..5403b19 --- /dev/null +++ b/dimension/utility.h @@ -0,0 +1,22 @@ +/************************************************************************* + * 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/>. * + *************************************************************************/ + +/* Print a parsing diagnostic to stderr */ +void dmnsn_diagnostic(const char *filename, unsigned int line, unsigned int col, + const char *format, ...); |