0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-23 02:01:55 +00:00
bird/lua/lua.h
2018-01-23 15:17:01 +01:00

12 lines
216 B
C

#include "nest/bird.h"
#include <lua.h>
typedef struct lua_bird_state {
int exception;
} lua_bird_state;
lua_bird_state *luaB_init(lua_State *L, struct linpool *lp);
void luaB_push_route(lua_State *L, rte *e);