From 6318de80d3329a627ebeae706b661a73d94e708e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 25 Feb 2014 11:30:21 -0300 Subject: added 'strip' parameter to lua_dump/string.dump --- lua.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 95fb3f9c..1738b6d8 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.298 2013/12/30 20:47:58 roberto Exp roberto $ +** $Id: lua.h,v 1.299 2014/02/13 12:11:34 roberto Exp roberto $ ** Lua - A Scripting Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** See Copyright Notice at the end of this file @@ -270,7 +270,7 @@ LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt, const char *chunkname, const char *mode); -LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data); +LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip); /* -- cgit v1.2.3-55-g6feb