Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ceguilua/src/lua-5.0.3/lua/lzio.h @ 1803

Last change on this file since 1803 was 1803, checked in by rgrieder, 16 years ago

added files for lua 5.1.3, lua 5.0.3, CEGUILua-0.6.1 and CEGUILua-0.5.0b

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1/*
2** $Id: lzio.h,v 1.15 2003/03/20 16:00:56 roberto Exp $
3** Buffered streams
4** See Copyright Notice in lua.h
5*/
6
7
8#ifndef lzio_h
9#define lzio_h
10
11#include "lua.h"
12
13
14#define EOZ     (-1)                    /* end of stream */
15
16typedef struct Zio ZIO;
17
18
19#define char2int(c)     cast(int, cast(unsigned char, (c)))
20
21#define zgetc(z)  (((z)->n--)>0 ?  char2int(*(z)->p++) : luaZ_fill(z))
22
23#define zname(z)        ((z)->name)
24
25void luaZ_init (ZIO *z, lua_Chunkreader reader, void *data, const char *name);
26size_t luaZ_read (ZIO* z, void* b, size_t n);   /* read next n bytes */
27int luaZ_lookahead (ZIO *z);
28
29
30
31typedef struct Mbuffer {
32  char *buffer;
33  size_t buffsize;
34} Mbuffer;
35
36
37char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n);
38
39#define luaZ_initbuffer(L, buff) ((buff)->buffer = NULL, (buff)->buffsize = 0)
40
41#define luaZ_sizebuffer(buff)   ((buff)->buffsize)
42#define luaZ_buffer(buff)       ((buff)->buffer)
43
44#define luaZ_resizebuffer(L, buff, size) \
45        (luaM_reallocvector(L, (buff)->buffer, (buff)->buffsize, size, char), \
46        (buff)->buffsize = size)
47
48#define luaZ_freebuffer(L, buff)        luaZ_resizebuffer(L, buff, 0)
49
50
51/* --------- Private Part ------------------ */
52
53struct Zio {
54  size_t n;                     /* bytes still unread */
55  const char *p;                /* current position in buffer */
56  lua_Chunkreader reader;
57  void* data;                   /* additional data */
58  const char *name;
59};
60
61
62int luaZ_fill (ZIO *z);
63
64#endif
Note: See TracBrowser for help on using the repository browser.