lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 8b5b42563c317f83318a0386551f0f0252e387dc
parent 502343b40230dfb00efc37bdbaa5c5576f3a5aa5
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 17 Dec 1997 18:56:59 -0200

"lua_dobuffer" (is not official, but its there...)

Diffstat:
Mldo.c | 13++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/ldo.c b/ldo.c @@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 1.14 1997/12/09 13:35:19 roberto Exp roberto $ +** $Id: ldo.c,v 1.15 1997/12/15 16:17:20 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -405,3 +405,14 @@ int lua_dostring (char *str) return status; } + +#if 0 +int lua_dobuffer (char *buff, int size) +{ + int status; + ZIO z; + luaZ_mopen(&z, buff, size); + status = do_main(&z, "(buffer)", 1); + return status; +} +#endif