Github User Fetcher 1.0.0
C Application with Server and GUI
|
Go to the source code of this file.
Data Structures | |
struct | Mbuffer |
struct | Zio |
Macros | |
#define | EOZ (-1) /* end of stream */ |
#define | zgetc(z) (((z)->n--)>0 ? cast_uchar(*(z)->p++) : luaZ_fill(z)) |
#define | luaZ_initbuffer(L, buff) ((buff)->buffer = NULL, (buff)->buffsize = 0) |
#define | luaZ_buffer(buff) ((buff)->buffer) |
#define | luaZ_sizebuffer(buff) ((buff)->buffsize) |
#define | luaZ_bufflen(buff) ((buff)->n) |
#define | luaZ_resetbuffer(buff) ((buff)->n = 0) |
#define | luaZ_resizebuffer(L, buff, size) |
#define | luaZ_freebuffer(L, buff) luaZ_resizebuffer(L, buff, 0) |
Typedefs | |
typedef struct Zio | ZIO |
typedef struct Mbuffer | Mbuffer |
Functions | |
LUAI_FUNC char * | luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n) |
LUAI_FUNC void | luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) |
LUAI_FUNC size_t | luaZ_read (ZIO *z, void *b, size_t n) |
LUAI_FUNC int | luaZ_fill (ZIO *z) |
#define EOZ (-1) /* end of stream */ |
Definition at line 16 of file lua-5.2.4/src/lzio.h.
#define luaZ_buffer | ( | buff | ) | ((buff)->buffer) |
Definition at line 31 of file lua-5.2.4/src/lzio.h.
#define luaZ_bufflen | ( | buff | ) | ((buff)->n) |
Definition at line 33 of file lua-5.2.4/src/lzio.h.
#define luaZ_freebuffer | ( | L, | |
buff ) luaZ_resizebuffer(L, buff, 0) |
Definition at line 42 of file lua-5.2.4/src/lzio.h.
#define luaZ_initbuffer | ( | L, | |
buff ) ((buff)->buffer = NULL, (buff)->buffsize = 0) |
Definition at line 29 of file lua-5.2.4/src/lzio.h.
#define luaZ_resetbuffer | ( | buff | ) | ((buff)->n = 0) |
Definition at line 35 of file lua-5.2.4/src/lzio.h.
#define luaZ_resizebuffer | ( | L, | |
buff, | |||
size ) |
Definition at line 38 of file lua-5.2.4/src/lzio.h.
#define luaZ_sizebuffer | ( | buff | ) | ((buff)->buffsize) |
Definition at line 32 of file lua-5.2.4/src/lzio.h.
#define zgetc | ( | z | ) | (((z)->n--)>0 ? cast_uchar(*(z)->p++) : luaZ_fill(z)) |
Definition at line 20 of file lua-5.2.4/src/lzio.h.
typedef struct Mbuffer Mbuffer |
Definition at line 18 of file lua-5.2.4/src/lzio.h.
Definition at line 21 of file lua-5.1.5/src/lzio.c.
LUAI_FUNC void luaZ_init | ( | lua_State * | L, |
ZIO * | z, | ||
lua_Reader | reader, | ||
void * | data ) |
Definition at line 74 of file lua-5.1.5/src/lzio.c.
References Mbuffer::buffer, Mbuffer::buffsize, LUA_MINBUFFER, and luaZ_resizebuffer.
Referenced by LoadString(), LoadString(), luaV_concat(), and luaV_concat().
Definition at line 58 of file lua-5.1.5/src/lzio.c.