summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-08-16 17:52:00 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-08-16 17:52:00 -0300
commitc787dccd9b5c3e55547a2c4bb598c0276de65034 (patch)
treec4cdf2f7319fee48e048472a2044119f541e8da2 /llex.h
parentb44e35b773bcaa9891d80a117392911ab5f656e5 (diff)
downloadlua-c787dccd9b5c3e55547a2c4bb598c0276de65034.tar.gz
lua-c787dccd9b5c3e55547a2c4bb598c0276de65034.tar.bz2
lua-c787dccd9b5c3e55547a2c4bb598c0276de65034.zip
"const" !!!
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llex.h b/llex.h
index 0b0dd4d9..20928075 100644
--- a/llex.h
+++ b/llex.h
@@ -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 {
61void luaX_init (void); 61void luaX_init (void);
62void luaX_setinput (LexState *LS, ZIO *z); 62void luaX_setinput (LexState *LS, ZIO *z);
63int luaX_lex (LexState *LS); 63int luaX_lex (LexState *LS);
64void luaX_syntaxerror (LexState *ls, char *s, char *token); 64void luaX_syntaxerror (LexState *ls, const char *s, const char *token);
65void luaX_error (LexState *ls, char *s); 65void luaX_error (LexState *ls, const char *s);
66void luaX_token2str (int token, char *s); 66void luaX_token2str (int token, char *s);
67 67
68 68