aboutsummaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-03-10 16:52:47 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-03-10 16:52:47 -0300
commit342a9365996d5f2018602e7650262adaf72bcb52 (patch)
treef2c4174f0f359fedf83c65564ae220dbb8105893 /lundump.h
parent901da539e51e252bdd6dcfb428b8b473db5e7abc (diff)
downloadlua-342a9365996d5f2018602e7650262adaf72bcb52.tar.gz
lua-342a9365996d5f2018602e7650262adaf72bcb52.tar.bz2
lua-342a9365996d5f2018602e7650262adaf72bcb52.zip
detail (breaking too long lines)
Diffstat (limited to 'lundump.h')
-rw-r--r--lundump.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/lundump.h b/lundump.h
index 5add1726..1204c2c5 100644
--- a/lundump.h
+++ b/lundump.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.h,v 1.39 2012/05/08 13:53:33 roberto Exp roberto $ 2** $Id: lundump.h,v 1.40 2014/02/27 16:56:20 roberto Exp roberto $
3** load precompiled Lua chunks 3** load precompiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -22,9 +22,11 @@
22#define LUAC_FORMAT 0 /* this is the official format */ 22#define LUAC_FORMAT 0 /* this is the official format */
23 23
24/* load one chunk; from lundump.c */ 24/* load one chunk; from lundump.c */
25LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name); 25LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff,
26 const char* name);
26 27
27/* dump one chunk; from ldump.c */ 28/* dump one chunk; from ldump.c */
28LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip); 29LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
30 void* data, int strip);
29 31
30#endif 32#endif