aboutsummaryrefslogtreecommitdiff
path: root/src/test.h
blob: 8dddb80eb3e4846d8b20e1b73e5cd562ef114878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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);

#define clean_lullaby_test luaI_nothing

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}
};