From c787dccd9b5c3e55547a2c4bb598c0276de65034 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 16 Aug 1999 17:52:00 -0300 Subject: "const" !!! --- lualib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index 805165f0..f60e72d1 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.5 1999/01/08 16:47:44 roberto Exp roberto $ +** $Id: lualib.h,v 1.6 1999/05/05 19:23:11 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -29,8 +29,8 @@ void lua_userinit (void); /* Auxiliary functions (private) */ -char *luaI_classend (char *p); -int luaI_singlematch (int c, char *p, char *ep); +const char *luaI_classend (const char *p); +int luaI_singlematch (int c, const char *p, const char *ep); #endif -- cgit v1.2.3-55-g6feb