diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-11-20 16:23:49 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-11-20 16:23:49 -0500 |
commit | 68bf4e11ac1e4f2866a1948406762931d5fd7e9a (patch) | |
tree | 31203a6b12b476ec6686fa375ac39737a529ebde /dimension/tokenize.h | |
parent | cb7c2622f6771292b7345a17bb69520a75de27a8 (diff) | |
download | dimension-68bf4e11ac1e4f2866a1948406762931d5fd7e9a.tar.xz |
Make `dimension' output some things as it works.
Diffstat (limited to 'dimension/tokenize.h')
-rw-r--r-- | dimension/tokenize.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dimension/tokenize.h b/dimension/tokenize.h index 4eb1109..98a9c2f 100644 --- a/dimension/tokenize.h +++ b/dimension/tokenize.h @@ -17,6 +17,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * *************************************************************************/ +#ifndef TOKENIZE_H +#define TOKENIZE_H + #include "../libdimension/dimension.h" typedef enum { @@ -536,3 +539,5 @@ void dmnsn_print_token_sexpr(FILE *file, const dmnsn_array *tokens); /* Returns a readable name for a token type (ex. DMNSN_T_FLOAT -> float) */ const char *dmnsn_token_string(dmnsn_token_type token_type); + +#endif /* TOKENIZE_H */ |