diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-01-25 16:44:21 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-01-25 16:44:21 -0200 |
commit | d83c2a84550221c30a48647fde9c433c65af1802 (patch) | |
tree | ea525b29eaabb7cacd54bf7d42ab9e57533e4b5a /llex.h | |
parent | d11e5adf55b11a446671775a6c7803e066fc94e8 (diff) | |
download | lua-d83c2a84550221c30a48647fde9c433c65af1802.tar.gz lua-d83c2a84550221c30a48647fde9c433c65af1802.tar.bz2 lua-d83c2a84550221c30a48647fde9c433c65af1802.zip |
performance details.
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.15 1999/11/22 13:12:07 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.16 1999/12/27 17:33:22 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 | */ |
@@ -63,7 +63,7 @@ void luaX_init (lua_State *L); | |||
63 | void luaX_setinput (lua_State *L, LexState *LS, ZIO *z); | 63 | void luaX_setinput (lua_State *L, LexState *LS, ZIO *z); |
64 | int luaX_lex (LexState *LS); | 64 | int luaX_lex (LexState *LS); |
65 | void luaX_syntaxerror (LexState *ls, const char *s, const char *token); | 65 | void luaX_syntaxerror (LexState *ls, const char *s, const char *token); |
66 | void luaX_error (LexState *ls, const char *s); | 66 | void luaX_error (LexState *ls, const char *s, int token); |
67 | void luaX_token2str (int token, char *s); | 67 | void luaX_token2str (int token, char *s); |
68 | 68 | ||
69 | 69 | ||