aboutsummaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-08-15 10:48:53 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-08-15 10:48:53 -0300
commit433cb1d13a767023e03111fc09c46903f40366ff (patch)
treedf5d105368debb523ea838c3e0c06e60c94ae9ca /lundump.h
parentd66198719d10e393dfba57c1f4aeea307cdb49ea (diff)
downloadlua-433cb1d13a767023e03111fc09c46903f40366ff.tar.gz
lua-433cb1d13a767023e03111fc09c46903f40366ff.tar.bz2
lua-433cb1d13a767023e03111fc09c46903f40366ff.zip
no more checks for non-default compilation options + luaU_dump has
new option to strip debug info
Diffstat (limited to 'lundump.h')
-rw-r--r--lundump.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lundump.h b/lundump.h
index d42cab0b..b9ae7126 100644
--- a/lundump.h
+++ b/lundump.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.h,v 1.31 2003/04/10 17:39:41 roberto Exp roberto $ 2** $Id: lundump.h,v 1.30 2003/04/07 20:34:20 lhf Exp lhf $
3** load pre-compiled Lua chunks 3** load pre-compiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -17,7 +17,7 @@ Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff);
17int luaU_endianness (void); 17int luaU_endianness (void);
18 18
19/* dump one chunk; from ldump.c */ 19/* dump one chunk; from ldump.c */
20void luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data); 20int luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data, int strip);
21 21
22/* print one chunk; from print.c */ 22/* print one chunk; from print.c */
23void luaU_print (const Proto* Main); 23void luaU_print (const Proto* Main);