summaryrefslogtreecommitdiff
path: root/lzio.h
diff options
context:
space:
mode:
Diffstat (limited to 'lzio.h')
-rw-r--r--lzio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lzio.h b/lzio.h
index 9ffbbf8a..e24c4f0e 100644
--- a/lzio.h
+++ b/lzio.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lzio.h,v 1.9 2002/04/29 12:37:41 roberto Exp roberto $ 2** $Id: lzio.h,v 1.10 2002/06/03 17:46:34 roberto Exp roberto $
3** Buffered streams 3** Buffered streams
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -26,6 +26,7 @@ typedef struct zio ZIO;
26 26
27void luaZ_init (ZIO *z, lua_Getblock getblock, void *ud, const char *name); 27void luaZ_init (ZIO *z, lua_Getblock getblock, void *ud, const char *name);
28size_t luaZ_zread (ZIO* z, void* b, size_t n); /* read next n bytes */ 28size_t luaZ_zread (ZIO* z, void* b, size_t n); /* read next n bytes */
29int luaZ_lookahead (ZIO *z);
29 30
30 31
31/* --------- Private Part ------------------ */ 32/* --------- Private Part ------------------ */