aboutsummaryrefslogtreecommitdiff
path: root/src/test.h
blob: 01527c6ac34ebc433fac747526498c8b5ecac1da (plain)
1
2
3
4
5
6
7
8
9
#include "lua.h"

int ld_match(lua_State*);

static const luaL_Reg test_function_list [] = {
  {"_match", ld_match},
  
  {NULL,NULL}
};