From 0b3d380f9fb79cc5a35ce34eecf56aea0d7fb9f9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 5 Aug 2002 15:45:02 -0300 Subject: internal names --- lzio.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'lzio.h') diff --git a/lzio.h b/lzio.h index a0dfa091..e7807ec3 100644 --- a/lzio.h +++ b/lzio.h @@ -1,5 +1,5 @@ /* -** $Id: lzio.h,v 1.11 2002/06/03 20:11:07 roberto Exp roberto $ +** $Id: lzio.h,v 1.12 2002/06/06 12:40:22 roberto Exp roberto $ ** Buffered streams ** See Copyright Notice in lua.h */ @@ -11,9 +11,6 @@ #include "lua.h" -/* For Lua only */ -#define zread luaZ_zread - #define EOZ (-1) /* end of stream */ typedef struct zio ZIO; @@ -25,7 +22,7 @@ typedef struct zio ZIO; #define zname(z) ((z)->name) void luaZ_init (ZIO *z, lua_Chunkreader reader, void *data, const char *name); -size_t luaZ_zread (ZIO* z, void* b, size_t n); /* read next n bytes */ +size_t luaZ_read (ZIO* z, void* b, size_t n); /* read next n bytes */ int luaZ_lookahead (ZIO *z); -- cgit v1.2.3-55-g6feb