1997-06-16 09:50:22 -07:00
|
|
|
/*
|
1997-09-16 12:25:59 -07:00
|
|
|
** $Id: $
|
|
|
|
** Buffered streams
|
|
|
|
** See Copyright Notice in lua.h
|
1997-06-16 09:50:22 -07:00
|
|
|
*/
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
#ifndef lzio_h
|
|
|
|
#define lzio_h
|
1997-06-16 09:50:22 -07:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
1997-06-18 13:30:52 -07:00
|
|
|
|
|
|
|
|
|
|
|
/* For Lua only */
|
1997-06-19 11:55:28 -07:00
|
|
|
#define zFopen luaZ_Fopen
|
|
|
|
#define zsopen luaZ_sopen
|
|
|
|
#define zmopen luaZ_mopen
|
|
|
|
#define zread luaZ_read
|
1997-06-18 13:30:52 -07:00
|
|
|
|
1997-06-16 09:50:22 -07:00
|
|
|
#define EOZ (-1) /* end of stream */
|
|
|
|
|
|
|
|
typedef struct zio ZIO;
|
|
|
|
|
|
|
|
ZIO* zFopen(ZIO* z, FILE* f); /* open FILEs */
|
|
|
|
ZIO* zsopen(ZIO* z, char* s); /* string */
|
|
|
|
ZIO* zmopen(ZIO* z, char* b, int size); /* memory */
|
|
|
|
|
1997-06-18 14:39:56 -07:00
|
|
|
int zread(ZIO* z, void* b, int n); /* read next n bytes */
|
|
|
|
|
1997-06-16 09:50:22 -07:00
|
|
|
#define zgetc(z) (--(z)->n>=0 ? ((int)*(z)->p++): (z)->filbuf(z))
|
|
|
|
#define zungetc(z) (++(z)->n,--(z)->p)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* --------- Private Part ------------------ */
|
|
|
|
|
|
|
|
#define ZBSIZE 256 /* buffer size */
|
|
|
|
|
|
|
|
struct zio {
|
|
|
|
int n; /* bytes still unread */
|
|
|
|
unsigned char* p; /* current position in buffer */
|
|
|
|
int (*filbuf)(ZIO* z);
|
|
|
|
void* u; /* additional data */
|
|
|
|
unsigned char buffer[ZBSIZE]; /* buffer */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|