diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-09 12:57:43 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-09 12:57:43 -0200 |
commit | 6ac047afc46cbee935587b5734ec37d2e667a598 (patch) | |
tree | 9dd53dcde6b44b1b2593420a13cbd828261a690e /lzio.h | |
parent | 0e1058cfdd07a3751fce1c79b75241cf770266cf (diff) | |
download | lua-6ac047afc46cbee935587b5734ec37d2e667a598.tar.gz lua-6ac047afc46cbee935587b5734ec37d2e667a598.tar.bz2 lua-6ac047afc46cbee935587b5734ec37d2e667a598.zip |
details
Diffstat (limited to 'lzio.h')
-rw-r--r-- | lzio.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||