diff options
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.12 1999/06/17 17:04:03 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.13 1999/07/22 19:29:42 roberto Exp roberto $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -61,8 +61,8 @@ typedef struct LexState { | |||
61 | void luaX_init (void); | 61 | void luaX_init (void); |
62 | void luaX_setinput (LexState *LS, ZIO *z); | 62 | void luaX_setinput (LexState *LS, ZIO *z); |
63 | int luaX_lex (LexState *LS); | 63 | int luaX_lex (LexState *LS); |
64 | void luaX_syntaxerror (LexState *ls, char *s, char *token); | 64 | void luaX_syntaxerror (LexState *ls, const char *s, const char *token); |
65 | void luaX_error (LexState *ls, char *s); | 65 | void luaX_error (LexState *ls, const char *s); |
66 | void luaX_token2str (int token, char *s); | 66 | void luaX_token2str (int token, char *s); |
67 | 67 | ||
68 | 68 | ||