0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-10 19:11:54 +00:00
bird/lua/lua.h

12 lines
216 B
C
Raw Normal View History

2017-02-06 14:25:48 +00:00
#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);
2017-02-08 11:36:32 +00:00
void luaB_push_route(lua_State *L, rte *e);