libs/iwinfo: unify LUA_WRAP_ASSOCLIST and LUA_WRAP_TXPWRLIST macros
[project/luci.git] / libs / iwinfo / src / iwinfo_lualib.h
index 9840466..f7eba14 100644 (file)
@@ -35,7 +35,7 @@
        { #op, iwinfo_L_##type##_##op }
 
 #define LUA_WRAP_INT(type,op)                                                  \
        { #op, iwinfo_L_##type##_##op }
 
 #define LUA_WRAP_INT(type,op)                                                  \
-       int iwinfo_L_##type##_##op(lua_State *L)                        \
+       static int iwinfo_L_##type##_##op(lua_State *L)         \
        {                                                                                                       \
                const char *ifname = luaL_checkstring(L, 1);    \
                int rv;                                                                                 \
        {                                                                                                       \
                const char *ifname = luaL_checkstring(L, 1);    \
                int rv;                                                                                 \
@@ -47,7 +47,7 @@
        }
 
 #define LUA_WRAP_STRING(type,op)                                               \
        }
 
 #define LUA_WRAP_STRING(type,op)                                               \
-       int iwinfo_L_##type##_##op(lua_State *L)                        \
+       static int iwinfo_L_##type##_##op(lua_State *L)         \
        {                                                                                                       \
                const char *ifname = luaL_checkstring(L, 1);    \
                char rv[IWINFO_BUFSIZE];                                                \
        {                                                                                                       \
                const char *ifname = luaL_checkstring(L, 1);    \
                char rv[IWINFO_BUFSIZE];                                                \
                return 1;                                                                               \
        }
 
                return 1;                                                                               \
        }
 
-#define LUA_WRAP_ASSOCLIST(type)                                               \
-       int iwinfo_L_##type##_assoclist(lua_State *L)           \
+#define LUA_WRAP_LIST(type,op)                                                 \
+       static int iwinfo_L_##type##_##op(lua_State *L)         \
        {                                                                                                       \
        {                                                                                                       \
-               return iwinfo_L_assoclist(L,                                    \
-                       type##_get_assoclist);                                          \
+               return iwinfo_L_##op(L, type##_get_##op);               \
        }
 
 #endif
        }
 
 #endif