blob: 7ad6840e8be1f9f1072bbfe627da9952b70d477d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Copyright (C) 2019 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#pragma once
#include <lua.h>
/** Make all the bindings accessible from the lua state,
* .i.e. define those lua tables. */
void kr_bindings_register(lua_State *L);
|