diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-05-24 10:54:49 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-05-24 10:54:49 -0300 |
commit | ef62b340e0a6b7b18931000dcbb19c4703bfe0e8 (patch) | |
tree | d9d995116a8a686b798d1b625b06ead26f28ba58 /llex.h | |
parent | 5c2dd7a9e0a5b871a71ba66c4683cd88fe4f5aa4 (diff) | |
download | lua-ef62b340e0a6b7b18931000dcbb19c4703bfe0e8.tar.gz lua-ef62b340e0a6b7b18931000dcbb19c4703bfe0e8.tar.bz2 lua-ef62b340e0a6b7b18931000dcbb19c4703bfe0e8.zip |
code cleaner for 16 bits.
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.23 2000/04/07 13:11:49 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.24 2000/04/12 18:57:19 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,6 +63,7 @@ typedef struct LexState { | |||
63 | void luaX_init (lua_State *L); | 63 | void luaX_init (lua_State *L); |
64 | void luaX_setinput (lua_State *L, LexState *LS, ZIO *z); | 64 | void luaX_setinput (lua_State *L, LexState *LS, ZIO *z); |
65 | int luaX_lex (LexState *LS); | 65 | int luaX_lex (LexState *LS); |
66 | void luaX_checklimit (LexState *ls, int val, int limit, const char *msg); | ||
66 | void luaX_syntaxerror (LexState *ls, const char *s, const char *token); | 67 | void luaX_syntaxerror (LexState *ls, const char *s, const char *token); |
67 | void luaX_error (LexState *ls, const char *s, int token); | 68 | void luaX_error (LexState *ls, const char *s, int token); |
68 | void luaX_token2str (int token, char *s); | 69 | void luaX_token2str (int token, char *s); |