aboutsummaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-10-09 10:42:01 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-10-09 10:42:01 -0300
commit46b063ef59c7b334f8f36a9ab5dfd76d094e70d7 (patch)
tree3d7aa7300a4478278515fa274cc0b7ee7076512c /lundump.h
parente1d5153a33d278ac9db18f5bcc142a75e48606de (diff)
downloadlua-46b063ef59c7b334f8f36a9ab5dfd76d094e70d7.tar.gz
lua-46b063ef59c7b334f8f36a9ab5dfd76d094e70d7.tar.bz2
lua-46b063ef59c7b334f8f36a9ab5dfd76d094e70d7.zip
`undump' also uses private buffer
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 6a7ca970..c5055826 100644
--- a/lundump.h
+++ b/lundump.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.h,v 1.26 2002/08/07 00:36:03 lhf Exp $ 2** $Id: lundump.h,v 1.27 2002/08/12 13:37:19 roberto Exp roberto $
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*/
@@ -13,7 +13,7 @@
13typedef int (*Writer)(const void* p, size_t size, void* u); 13typedef int (*Writer)(const void* p, size_t size, void* u);
14 14
15/* load one chunk; from lundump.c */ 15/* load one chunk; from lundump.c */
16Proto* luaU_undump (lua_State* L, ZIO* Z); 16Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer *buff);
17 17
18/* find byte order; from lundump.c */ 18/* find byte order; from lundump.c */
19int luaU_endianness (void); 19int luaU_endianness (void);