From accd7bc25355be4350db6d117515c672121a67f2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 21 Nov 1997 17:00:46 -0200 Subject: small modifications (format, small optimizations, etc) --- lzio.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lzio.h') diff --git a/lzio.h b/lzio.h index 31ce948e..4de21020 100644 --- a/lzio.h +++ b/lzio.h @@ -1,5 +1,5 @@ /* -** $Id: $ +** $Id: lzio.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ ** Buffered streams ** See Copyright Notice in lua.h */ @@ -22,11 +22,11 @@ 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 */ +ZIO* zFopen (ZIO* z, FILE* f); /* open FILEs */ +ZIO* zsopen (ZIO* z, char* s); /* string */ +ZIO* zmopen (ZIO* z, char* b, int size); /* memory */ -int zread(ZIO* z, void* b, int n); /* read next n bytes */ +int zread (ZIO* z, void* b, int n); /* read next n bytes */ #define zgetc(z) (--(z)->n>=0 ? ((int)*(z)->p++): (z)->filbuf(z)) #define zungetc(z) (++(z)->n,--(z)->p) -- cgit v1.2.3-55-g6feb