diff options
| author | Jakob Fries <jakob.fries@gmail.com> | 2008-01-17 23:04:53 +0000 |
|---|---|---|
| committer | Jakob Fries <jakob.fries@gmail.com> | 2008-01-17 23:04:53 +0000 |
| commit | 253a5639ae170a16055e2c8a76d12335342f6d51 (patch) | |
| tree | c38176217e1cb96bc3a7659d65aa5de97d3024db /src/engine/e_console.h | |
| parent | e42c493d0c294ccb0a314c8447818c8d613195df (diff) | |
| download | zcatch-253a5639ae170a16055e2c8a76d12335342f6d51.tar.gz zcatch-253a5639ae170a16055e2c8a76d12335342f6d51.zip | |
Console should now lex and parse strings correctly (including escaping).
Diffstat (limited to 'src/engine/e_console.h')
| -rw-r--r-- | src/engine/e_console.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/engine/e_console.h b/src/engine/e_console.h index c383e8b5..77057df3 100644 --- a/src/engine/e_console.h +++ b/src/engine/e_console.h @@ -31,8 +31,6 @@ struct lexer_result unsigned int num_tokens; }; -int lex(const char *line, struct lexer_result *result); - int extract_result_string(struct lexer_result *result, int index, const char **str); int extract_result_int(struct lexer_result *result, int index, int *i); int extract_result_float(struct lexer_result *result, int index, float *f); |