RetroArch
Classes | Macros | Functions | Variables
lapi.c File Reference
#include "lprefix.h"
#include <stdarg.h>
#include <string.h>
#include "lua.h"
#include "lapi.h"
#include "ldebug.h"
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "lundump.h"
#include "lvm.h"
Include dependency graph for lapi.c:

Classes

struct  CallS
 

Macros

#define lapi_c
 
#define LUA_CORE
 
#define NONVALIDVALUE   cast(TValue *, luaO_nilobject)
 
#define isvalid(o)   ((o) != luaO_nilobject)
 
#define ispseudo(i)   ((i) <= LUA_REGISTRYINDEX)
 
#define isupvalue(i)   ((i) < LUA_REGISTRYINDEX)
 
#define isstackindex(i, o)   (isvalid(o) && !ispseudo(i))
 
#define api_checkvalidindex(l, o)   api_check(l, isvalid(o), "invalid index")
 
#define api_checkstackindex(l, i, o)   api_check(l, isstackindex(i, o), "index not in the stack")
 
#define checkresults(L, na, nr)
 

Functions

static TValueindex2addr (lua_State *L, int idx)
 
static void growstack (lua_State *L, void *ud)
 
LUA_API int lua_checkstack (lua_State *L, int n)
 
LUA_API void lua_xmove (lua_State *from, lua_State *to, int n)
 
LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf)
 
LUA_API const lua_Numberlua_version (lua_State *L)
 
LUA_API int lua_absindex (lua_State *L, int idx)
 
LUA_API int lua_gettop (lua_State *L)
 
LUA_API void lua_settop (lua_State *L, int idx)
 
static void reverse (lua_State *L, StkId from, StkId to)
 
LUA_API void lua_rotate (lua_State *L, int idx, int n)
 
LUA_API void lua_copy (lua_State *L, int fromidx, int toidx)
 
LUA_API void lua_pushvalue (lua_State *L, int idx)
 
LUA_API int lua_type (lua_State *L, int idx)
 
LUA_API const char * lua_typename (lua_State *L, int t)
 
LUA_API int lua_iscfunction (lua_State *L, int idx)
 
LUA_API int lua_isinteger (lua_State *L, int idx)
 
LUA_API int lua_isnumber (lua_State *L, int idx)
 
LUA_API int lua_isstring (lua_State *L, int idx)
 
LUA_API int lua_isuserdata (lua_State *L, int idx)
 
LUA_API int lua_rawequal (lua_State *L, int index1, int index2)
 
LUA_API void lua_arith (lua_State *L, int op)
 
LUA_API int lua_compare (lua_State *L, int index1, int index2, int op)
 
LUA_API size_t lua_stringtonumber (lua_State *L, const char *s)
 
LUA_API lua_Number lua_tonumberx (lua_State *L, int idx, int *pisnum)
 
LUA_API lua_Integer lua_tointegerx (lua_State *L, int idx, int *pisnum)
 
LUA_API int lua_toboolean (lua_State *L, int idx)
 
LUA_API const char * lua_tolstring (lua_State *L, int idx, size_t *len)
 
LUA_API size_t lua_rawlen (lua_State *L, int idx)
 
LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx)
 
LUA_API voidlua_touserdata (lua_State *L, int idx)
 
LUA_API lua_Statelua_tothread (lua_State *L, int idx)
 
LUA_API const voidlua_topointer (lua_State *L, int idx)
 
LUA_API void lua_pushnil (lua_State *L)
 
LUA_API void lua_pushnumber (lua_State *L, lua_Number n)
 
LUA_API void lua_pushinteger (lua_State *L, lua_Integer n)
 
LUA_API const char * lua_pushlstring (lua_State *L, const char *s, size_t len)
 
LUA_API const char * lua_pushstring (lua_State *L, const char *s)
 
LUA_API const char * lua_pushvfstring (lua_State *L, const char *fmt, va_list argp)
 
LUA_API const char * lua_pushfstring (lua_State *L, const char *fmt,...)
 
LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n)
 
LUA_API void lua_pushboolean (lua_State *L, int b)
 
LUA_API void lua_pushlightuserdata (lua_State *L, void *p)
 
LUA_API int lua_pushthread (lua_State *L)
 
static int auxgetstr (lua_State *L, const TValue *t, const char *k)
 
LUA_API int lua_getglobal (lua_State *L, const char *name)
 
LUA_API int lua_gettable (lua_State *L, int idx)
 
LUA_API int lua_getfield (lua_State *L, int idx, const char *k)
 
LUA_API int lua_geti (lua_State *L, int idx, lua_Integer n)
 
LUA_API int lua_rawget (lua_State *L, int idx)
 
LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n)
 
LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p)
 
LUA_API void lua_createtable (lua_State *L, int narray, int nrec)
 
LUA_API int lua_getmetatable (lua_State *L, int objindex)
 
LUA_API int lua_getuservalue (lua_State *L, int idx)
 
static void auxsetstr (lua_State *L, const TValue *t, const char *k)
 
LUA_API void lua_setglobal (lua_State *L, const char *name)
 
LUA_API void lua_settable (lua_State *L, int idx)
 
LUA_API void lua_setfield (lua_State *L, int idx, const char *k)
 
LUA_API void lua_seti (lua_State *L, int idx, lua_Integer n)
 
LUA_API void lua_rawset (lua_State *L, int idx)
 
LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n)
 
LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p)
 
LUA_API int lua_setmetatable (lua_State *L, int objindex)
 
LUA_API void lua_setuservalue (lua_State *L, int idx)
 
LUA_API void lua_callk (lua_State *L, int nargs, int nresults, lua_KContext ctx, lua_KFunction k)
 
static void f_call (lua_State *L, void *ud)
 
LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, lua_KContext ctx, lua_KFunction k)
 
LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data, const char *chunkname, const char *mode)
 
LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data, int strip)
 
LUA_API int lua_status (lua_State *L)
 
LUA_API int lua_gc (lua_State *L, int what, int data)
 
LUA_API int lua_error (lua_State *L)
 
LUA_API int lua_next (lua_State *L, int idx)
 
LUA_API void lua_concat (lua_State *L, int n)
 
LUA_API void lua_len (lua_State *L, int idx)
 
LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud)
 
LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud)
 
LUA_API voidlua_newuserdata (lua_State *L, size_t size)
 
static const char * aux_upvalue (StkId fi, int n, TValue **val, CClosure **owner, UpVal **uv)
 
LUA_API const char * lua_getupvalue (lua_State *L, int funcindex, int n)
 
LUA_API const char * lua_setupvalue (lua_State *L, int funcindex, int n)
 
static UpVal ** getupvalref (lua_State *L, int fidx, int n, LClosure **pf)
 
LUA_API voidlua_upvalueid (lua_State *L, int fidx, int n)
 
LUA_API void lua_upvaluejoin (lua_State *L, int fidx1, int n1, int fidx2, int n2)
 

Variables

const char lua_ident []
 

Macro Definition Documentation

◆ api_checkstackindex

#define api_checkstackindex (   l,
  i,
 
)    api_check(l, isstackindex(i, o), "index not in the stack")

◆ api_checkvalidindex

#define api_checkvalidindex (   l,
 
)    api_check(l, isvalid(o), "invalid index")

◆ checkresults

#define checkresults (   L,
  na,
  nr 
)
Value:
api_check(L, (nr) == LUA_MULTRET || (L->ci->top - L->top >= (nr) - (na)), \
"results from function overflow current stack size")
#define LUA_MULTRET
Definition: lua.h:34
#define api_check(l, e, msg)
Definition: llimits.h:101
Ιστορικό Εικόνα Πληροφορίες Όλοι Οι Χρήστες Χειρίζονται Το Μενού Αριστερό Αναλογικό Αριστερό Αναλογικό Αριστερό Αναλογικό Y Αριστερό Αναλογικό Δεξί Αναλογικό X Δεξί Αναλογικό Δεξί Αναλογικό Y Δεξί Αναλογικό Σκανδάλη Όπλου Όπλο Aux A Όπλο Aux C Όπλο Select Όπλο D pad Κάτω Όπλο D pad Δεξιά Νεκρή Ζώνη Αναλογικού Σύνδεση Όλων Λήξη Χρόνου Σύνδεσης Hide Unbound Core Input Descriptors Κατάλογος Συσκευών Κατάλογος Ποντικιού Duty Cycle Keyboard Gamepad Mapping Enable Κουμπί D pad κάτω Κουμπί Κουμπί L(πίσω)" ) MSG_HASH( MENU_ENUM_LABEL_VALUE_INPUT_JOYPAD_LEFT

◆ ispseudo

#define ispseudo (   i)    ((i) <= LUA_REGISTRYINDEX)

◆ isstackindex

#define isstackindex (   i,
 
)    (isvalid(o) && !ispseudo(i))

◆ isupvalue

#define isupvalue (   i)    ((i) < LUA_REGISTRYINDEX)

◆ isvalid

#define isvalid (   o)    ((o) != luaO_nilobject)

◆ lapi_c

#define lapi_c

◆ LUA_CORE

#define LUA_CORE

◆ NONVALIDVALUE

#define NONVALIDVALUE   cast(TValue *, luaO_nilobject)

Function Documentation

◆ aux_upvalue()

static const char* aux_upvalue ( StkId  fi,
int  n,
TValue **  val,
CClosure **  owner,
UpVal **  uv 
)
static
Here is the caller graph for this function:

◆ auxgetstr()

static int auxgetstr ( lua_State L,
const TValue t,
const char *  k 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ auxsetstr()

static void auxsetstr ( lua_State L,
const TValue t,
const char *  k 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ f_call()

static void f_call ( lua_State L,
void ud 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getupvalref()

static UpVal** getupvalref ( lua_State L,
int  fidx,
int  n,
LClosure **  pf 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ growstack()

static void growstack ( lua_State L,
void ud 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ index2addr()

static TValue* index2addr ( lua_State L,
int  idx 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_absindex()

LUA_API int lua_absindex ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_arith()

LUA_API void lua_arith ( lua_State L,
int  op 
)
Here is the call graph for this function:

◆ lua_atpanic()

LUA_API lua_CFunction lua_atpanic ( lua_State L,
lua_CFunction  panicf 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_callk()

LUA_API void lua_callk ( lua_State L,
int  nargs,
int  nresults,
lua_KContext  ctx,
lua_KFunction  k 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_checkstack()

LUA_API int lua_checkstack ( lua_State L,
int  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_compare()

LUA_API int lua_compare ( lua_State L,
int  index1,
int  index2,
int  op 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_concat()

LUA_API void lua_concat ( lua_State L,
int  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_copy()

LUA_API void lua_copy ( lua_State L,
int  fromidx,
int  toidx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_createtable()

LUA_API void lua_createtable ( lua_State L,
int  narray,
int  nrec 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_dump()

LUA_API int lua_dump ( lua_State L,
lua_Writer  writer,
void data,
int  strip 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_error()

LUA_API int lua_error ( lua_State L)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_gc()

LUA_API int lua_gc ( lua_State L,
int  what,
int  data 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_getallocf()

LUA_API lua_Alloc lua_getallocf ( lua_State L,
void **  ud 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_getfield()

LUA_API int lua_getfield ( lua_State L,
int  idx,
const char *  k 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_getglobal()

LUA_API int lua_getglobal ( lua_State L,
const char *  name 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_geti()

LUA_API int lua_geti ( lua_State L,
int  idx,
lua_Integer  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_getmetatable()

LUA_API int lua_getmetatable ( lua_State L,
int  objindex 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_gettable()

LUA_API int lua_gettable ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_gettop()

LUA_API int lua_gettop ( lua_State L)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_getupvalue()

LUA_API const char* lua_getupvalue ( lua_State L,
int  funcindex,
int  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_getuservalue()

LUA_API int lua_getuservalue ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_iscfunction()

LUA_API int lua_iscfunction ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_isinteger()

LUA_API int lua_isinteger ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_isnumber()

LUA_API int lua_isnumber ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_isstring()

LUA_API int lua_isstring ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_isuserdata()

LUA_API int lua_isuserdata ( lua_State L,
int  idx 
)
Here is the call graph for this function:

◆ lua_len()

LUA_API void lua_len ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_load()

LUA_API int lua_load ( lua_State L,
lua_Reader  reader,
void data,
const char *  chunkname,
const char *  mode 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_newuserdata()

LUA_API void* lua_newuserdata ( lua_State L,
size_t  size 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_next()

LUA_API int lua_next ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pcallk()

LUA_API int lua_pcallk ( lua_State L,
int  nargs,
int  nresults,
int  errfunc,
lua_KContext  ctx,
lua_KFunction  k 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushboolean()

LUA_API void lua_pushboolean ( lua_State L,
int  b 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushcclosure()

LUA_API void lua_pushcclosure ( lua_State L,
lua_CFunction  fn,
int  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushfstring()

LUA_API const char* lua_pushfstring ( lua_State L,
const char *  fmt,
  ... 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushinteger()

LUA_API void lua_pushinteger ( lua_State L,
lua_Integer  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushlightuserdata()

LUA_API void lua_pushlightuserdata ( lua_State L,
void p 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushlstring()

LUA_API const char* lua_pushlstring ( lua_State L,
const char *  s,
size_t  len 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushnil()

LUA_API void lua_pushnil ( lua_State L)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushnumber()

LUA_API void lua_pushnumber ( lua_State L,
lua_Number  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushstring()

LUA_API const char* lua_pushstring ( lua_State L,
const char *  s 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushthread()

LUA_API int lua_pushthread ( lua_State L)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushvalue()

LUA_API void lua_pushvalue ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_pushvfstring()

LUA_API const char* lua_pushvfstring ( lua_State L,
const char *  fmt,
va_list  argp 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rawequal()

LUA_API int lua_rawequal ( lua_State L,
int  index1,
int  index2 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rawget()

LUA_API int lua_rawget ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rawgeti()

LUA_API int lua_rawgeti ( lua_State L,
int  idx,
lua_Integer  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rawgetp()

LUA_API int lua_rawgetp ( lua_State L,
int  idx,
const void p 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rawlen()

LUA_API size_t lua_rawlen ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rawset()

LUA_API void lua_rawset ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rawseti()

LUA_API void lua_rawseti ( lua_State L,
int  idx,
lua_Integer  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rawsetp()

LUA_API void lua_rawsetp ( lua_State L,
int  idx,
const void p 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_rotate()

LUA_API void lua_rotate ( lua_State L,
int  idx,
int  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_setallocf()

LUA_API void lua_setallocf ( lua_State L,
lua_Alloc  f,
void ud 
)
Here is the call graph for this function:

◆ lua_setfield()

LUA_API void lua_setfield ( lua_State L,
int  idx,
const char *  k 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_setglobal()

LUA_API void lua_setglobal ( lua_State L,
const char *  name 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_seti()

LUA_API void lua_seti ( lua_State L,
int  idx,
lua_Integer  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_setmetatable()

LUA_API int lua_setmetatable ( lua_State L,
int  objindex 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_settable()

LUA_API void lua_settable ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_settop()

LUA_API void lua_settop ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_setupvalue()

LUA_API const char* lua_setupvalue ( lua_State L,
int  funcindex,
int  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_setuservalue()

LUA_API void lua_setuservalue ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_status()

LUA_API int lua_status ( lua_State L)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_stringtonumber()

LUA_API size_t lua_stringtonumber ( lua_State L,
const char *  s 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_toboolean()

LUA_API int lua_toboolean ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_tocfunction()

LUA_API lua_CFunction lua_tocfunction ( lua_State L,
int  idx 
)
Here is the call graph for this function:

◆ lua_tointegerx()

LUA_API lua_Integer lua_tointegerx ( lua_State L,
int  idx,
int *  pisnum 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_tolstring()

LUA_API const char* lua_tolstring ( lua_State L,
int  idx,
size_t *  len 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_tonumberx()

LUA_API lua_Number lua_tonumberx ( lua_State L,
int  idx,
int *  pisnum 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_topointer()

LUA_API const void* lua_topointer ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_tothread()

LUA_API lua_State* lua_tothread ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_touserdata()

LUA_API void* lua_touserdata ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_type()

LUA_API int lua_type ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_typename()

LUA_API const char* lua_typename ( lua_State L,
int  t 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_upvalueid()

LUA_API void* lua_upvalueid ( lua_State L,
int  fidx,
int  n 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_upvaluejoin()

LUA_API void lua_upvaluejoin ( lua_State L,
int  fidx1,
int  n1,
int  fidx2,
int  n2 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_version()

LUA_API const lua_Number* lua_version ( lua_State L)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lua_xmove()

LUA_API void lua_xmove ( lua_State from,
lua_State to,
int  n 
)
Here is the caller graph for this function:

◆ reverse()

static void reverse ( lua_State L,
StkId  from,
StkId  to 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ lua_ident

const char lua_ident[]
Initial value:
=
"$LuaVersion: " LUA_COPYRIGHT " $"
"$LuaAuthors: " LUA_AUTHORS " $"
#define LUA_COPYRIGHT
Definition: lua.h:26
#define LUA_AUTHORS
Definition: lua.h:27