summaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-01-27 13:52:57 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-01-27 13:52:57 -0200
commit0175f8d5d18d18e2d8a94db9c5be5c40598aebda (patch)
tree9b16f0dfa99f038e87cbd053353042581cbcfc6a /lundump.h
parente79bf02f33c57523833b5b700d0d5b6e6955a5d7 (diff)
downloadlua-github-0175f8d5d18d18e2d8a94db9c5be5c40598aebda.tar.gz
dump/undump of upvalue names
Diffstat (limited to 'lundump.h')
-rw-r--r--lundump.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lundump.h b/lundump.h
index 44eb202b..474075a0 100644
--- a/lundump.h
+++ b/lundump.h
@@ -1,5 +1,5 @@
/*
-** $Id: lundump.h,v 1.28 2002/10/09 13:42:01 roberto Exp roberto $
+** $Id: lundump.h,v 1.28 2002/12/13 11:12:35 lhf Exp $
** load pre-compiled Lua chunks
** See Copyright Notice in lua.h
*/
@@ -11,13 +11,13 @@
#include "lzio.h"
/* load one chunk; from lundump.c */
-Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer *buff);
+Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff);
/* find byte order; from lundump.c */
int luaU_endianness (void);
-/* dump one chunk; from dump.c */
-void luaU_dump (lua_State *L, const Proto* Main, lua_Chunkwriter w, void* data);
+/* dump one chunk; from ldump.c */
+void luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data);
/* print one chunk; from print.c */
void luaU_print (const Proto* Main);