This commit is contained in:
Roberto Ierusalimschy
1998-01-09 12:57:43 -02:00
parent 0e1058cfdd
commit 6ac047afc4
6 changed files with 27 additions and 30 deletions

4
lzio.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lzio.h,v 1.2 1997/11/21 19:00:46 roberto Exp roberto $
** $Id: lzio.h,v 1.3 1997/12/22 20:57:18 roberto Exp roberto $
** Buffered streams
** See Copyright Notice in lua.h
*/
@@ -42,8 +42,8 @@ struct zio {
unsigned char* p; /* current position in buffer */
int (*filbuf)(ZIO* z);
void* u; /* additional data */
unsigned char buffer[ZBSIZE]; /* buffer */
char *name;
unsigned char buffer[ZBSIZE]; /* buffer */
};