| 2292 | } |
| 2293 | |
| 2294 | static int l_concat(Lua lua) |
| 2295 | { |
| 2296 | char *s1 = strdup(luabb_tostring(lua, 1)); |
| 2297 | char *s2 = strdup(luabb_tostring(lua, 2)); |
| 2298 | lua_pushfstring(lua, "%s%s", s1, s2); |
| 2299 | free(s1); |
| 2300 | free(s2); |
| 2301 | return 1; |
| 2302 | } |
| 2303 | |
| 2304 | static int l_int_new(lua_State *lua) |
| 2305 | { |
nothing calls this directly
no test coverage detected