Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
noparser.c File Reference
#include "llex.h"
#include "lparser.h"
#include "lzio.h"

Go to the source code of this file.

Macros

#define LUA_CORE
 

Functions

LUAI_FUNC void luaX_init (lua_State *L)
 
LUAI_FUNC ProtoluaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const char *name)
 

Macro Definition Documentation

◆ LUA_CORE

#define LUA_CORE

Definition at line 15 of file noparser.c.

Function Documentation

◆ luaX_init()

LUAI_FUNC void luaX_init ( lua_State * L)

Definition at line 21 of file noparser.c.

21 {
22 UNUSED(L);
23}
#define UNUSED(x)

References UNUSED.

Referenced by f_luaopen(), f_luaopen(), f_luaopen(), and f_luaopen().

◆ luaY_parser()

LUAI_FUNC Proto * luaY_parser ( lua_State * L,
ZIO * z,
Mbuffer * buff,
const char * name )

Definition at line 25 of file noparser.c.

25 {
26 UNUSED(z);
27 UNUSED(buff);
28 UNUSED(name);
29 lua_pushliteral(L,"parser not loaded");
30 lua_error(L);
31 return NULL;
32}
#define NULL
Definition gmacros.h:924
const char * name
Definition lsqlite3.c:2154
LUA_API int lua_error(lua_State *L)
#define lua_pushliteral(L, s)

References lua_error(), lua_pushliteral, name, NULL, and UNUSED.

Referenced by f_parser(), f_parser(), f_parser(), and f_parser().