lua5.4
函数 | 变量
lib1.c 文件参考
#include "lua.h"
#include "lauxlib.h"
lib1.c 的引用(Include)关系图:

函数

static int id (lua_State *L)
 
LUAMOD_API int lib1_export (lua_State *L)
 
LUAMOD_API int onefunction (lua_State *L)
 
LUAMOD_API int anotherfunc (lua_State *L)
 
LUAMOD_API int luaopen_lib1_sub (lua_State *L)
 

变量

static const struct luaL_Reg funcs []
 

函数说明

◆ anotherfunc()

LUAMOD_API int anotherfunc ( lua_State L)
函数调用图:

◆ id()

static int id ( lua_State L)
static
函数调用图:
这是这个函数的调用关系图:

◆ lib1_export()

LUAMOD_API int lib1_export ( lua_State L)
函数调用图:
这是这个函数的调用关系图:

◆ luaopen_lib1_sub()

LUAMOD_API int luaopen_lib1_sub ( lua_State L)
函数调用图:

◆ onefunction()

LUAMOD_API int onefunction ( lua_State L)
函数调用图:

变量说明

◆ funcs

const struct luaL_Reg funcs[]
static
初始值:
= {
{"id", id},
{NULL, NULL}
}