diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-03-10 16:52:47 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-03-10 16:52:47 -0300 |
| commit | 342a9365996d5f2018602e7650262adaf72bcb52 (patch) | |
| tree | f2c4174f0f359fedf83c65564ae220dbb8105893 | |
| parent | 901da539e51e252bdd6dcfb428b8b473db5e7abc (diff) | |
| download | lua-342a9365996d5f2018602e7650262adaf72bcb52.tar.gz lua-342a9365996d5f2018602e7650262adaf72bcb52.tar.bz2 lua-342a9365996d5f2018602e7650262adaf72bcb52.zip | |
detail (breaking too long lines)
| -rw-r--r-- | lundump.h | 8 |
1 files changed, 5 insertions, 3 deletions
| @@ -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 */ |
| 25 | LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name); | 25 | LUAI_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 */ |
| 28 | LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip); | 29 | LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, |
| 30 | void* data, int strip); | ||
| 29 | 31 | ||
| 30 | #endif | 32 | #endif |
