dec55529b72268d338ebbe6ea9b5b9869ccef6be
[project/luci.git] / libs / luanet / src / helper.h
1 /*
2 * Licensed under the Apache License, Version 2.0 (the "License");
3 * you may not use this file except in compliance with the License.
4 * You may obtain a copy of the License at
5 *
6 * http://www.apache.org/licenses/LICENSE-2.0
7 *
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS,
10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and
12 * limitations under the License.
13 *
14 * Copyright (C) 2008 John Crispin <blogic@openwrt.org>
15 * Copyright (C) 2008 Steven Barth <steven@midlink.org>
16 */
17
18 #ifndef _HELPER_H__
19 #define _HELPER_H__
20
21 #include <lua.h>
22 #include <lualib.h>
23 #include <lauxlib.h>
24
25 int char2ipv4(char *c, char *ip);
26 void ipv42char(char *b, char *ip);
27 void mac2char(char *b, char *mac);
28 void add_table_entry(lua_State *L, const char *k, const char *v);
29 void add_table_entry_int(lua_State *L, const char *k, int v);
30
31 #endif