blob: bb39cc8d6a2d6811b1f3e38f0d90c6bad45bb62e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "lua.h"
#include "config.h"
int ld_match(lua_State*);
int l_stack_dump(lua_State*);
int l_upvalue_key_table(lua_State* L);
int l_stream_test(lua_State* L);
static const luaL_Reg test_function_list [] = {
{"_match", ld_match},
{"stack_dump", l_stack_dump},
{"upvalue_key_table", l_upvalue_key_table},
{"stream", l_stream_test},
{NULL,NULL}
};
static struct config test_config[] = {
{.type = c_none}
};
|