aboutsummaryrefslogtreecommitdiff
path: root/lzio.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-01-09 12:57:43 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-01-09 12:57:43 -0200
commit6ac047afc46cbee935587b5734ec37d2e667a598 (patch)
tree9dd53dcde6b44b1b2593420a13cbd828261a690e /lzio.h
parent0e1058cfdd07a3751fce1c79b75241cf770266cf (diff)
downloadlua-6ac047afc46cbee935587b5734ec37d2e667a598.tar.gz
lua-6ac047afc46cbee935587b5734ec37d2e667a598.tar.bz2
lua-6ac047afc46cbee935587b5734ec37d2e667a598.zip
details
Diffstat (limited to 'lzio.h')
-rw-r--r--lzio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lzio.h b/lzio.h
index 54354a8a..94b79da4 100644
--- a/lzio.h
+++ b/lzio.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lzio.h,v 1.2 1997/11/21 19:00:46 roberto Exp roberto $ 2** $Id: lzio.h,v 1.3 1997/12/22 20:57:18 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*/
@@ -42,8 +42,8 @@ struct zio {
42 unsigned char* p; /* current position in buffer */ 42 unsigned char* p; /* current position in buffer */
43 int (*filbuf)(ZIO* z); 43 int (*filbuf)(ZIO* z);
44 void* u; /* additional data */ 44 void* u; /* additional data */
45 unsigned char buffer[ZBSIZE]; /* buffer */
46 char *name; 45 char *name;
46 unsigned char buffer[ZBSIZE]; /* buffer */
47}; 47};
48 48
49 49