From d600a6b5b358c28d482b01f10bfa3292b17f5d12 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 16 Sep 1997 16:25:59 -0300 Subject: [PATCH] a generic input stream interface --- zio.c => lzio.c | 13 ++++++++----- zio.h => lzio.h | 11 ++++++----- 2 files changed, 14 insertions(+), 10 deletions(-) rename zio.c => lzio.c (90%) rename zio.h => lzio.h (86%) diff --git a/zio.c b/lzio.c similarity index 90% rename from zio.c rename to lzio.c index c0b25daa..bd714ea1 100644 --- a/zio.c +++ b/lzio.c @@ -1,13 +1,16 @@ /* -* zio.c -* a generic input stream interface -* $Id: zio.c,v 1.1 1997/06/16 16:50:22 roberto Exp roberto $ +** $Id: zio.c,v 1.2 1997/06/20 19:25:54 roberto Exp $ +** a generic input stream interface +** See Copyright Notice in lua.h */ + + #include -#include #include -#include "zio.h" + +#include "lzio.h" + /* ----------------------------------------------------- memory buffers --- */ diff --git a/zio.h b/lzio.h similarity index 86% rename from zio.h rename to lzio.h index c688df55..31ce948e 100644 --- a/zio.h +++ b/lzio.h @@ -1,11 +1,12 @@ /* -* zio.h -* a generic input stream interface -* $Id: zio.h,v 1.4 1997/06/19 18:55:28 roberto Exp roberto $ +** $Id: $ +** Buffered streams +** See Copyright Notice in lua.h */ -#ifndef zio_h -#define zio_h + +#ifndef lzio_h +#define lzio_h #include