summaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-18 13:57:03 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-18 13:57:03 -0300
commitc9902be294f5c2dca8a67a67fd324f91e4352c0a (patch)
tree3f3ef43d231334ee60c13bf310f7995845e97cab /lauxlib.h
parent112c9d53ab47e77fd09d4ecb9b11d432ed906c88 (diff)
downloadlua-c9902be294f5c2dca8a67a67fd324f91e4352c0a.tar.gz
lua-c9902be294f5c2dca8a67a67fd324f91e4352c0a.tar.bz2
lua-c9902be294f5c2dca8a67a67fd324f91e4352c0a.zip
"findname" moved from lobject.c to lauxlib.c (so libraries may use it).
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 0e150d25..572db923 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.6 1998/01/09 15:06:07 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.7 1998/03/06 16:54:42 roberto Exp roberto $
3** Auxiliar functions for building Lua libraries 3** Auxiliar functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -41,6 +41,7 @@ void luaL_addsize (int n);
41int luaL_newbuffer (int size); 41int luaL_newbuffer (int size);
42void luaL_oldbuffer (int old); 42void luaL_oldbuffer (int old);
43char *luaL_buffer (void); 43char *luaL_buffer (void);
44int luaL_findstring (char *name, char *list[]);
44 45
45 46
46#endif 47#endif