packages feed

lpeg-1.1.0: cbits/re.c

#include "lua.h"
#include "lauxlib.h"
#include "re.h"

int luaopen_re(lua_State *L);
int luaopen_re(lua_State *L) {
  luaL_loadstring(L, cbits_lpeg_1_1_0_re_lua);
  lua_call(L, 0, 1);
  return 1;
}