| 2252 | } |
| 2253 | |
| 2254 | char *malloc_and_copy_string(lua_State *L, const char *init_data) |
| 2255 | { |
| 2256 | return malloc_managed_string(L, sizeof(char) * (strlen(init_data) + 1), init_data); |
| 2257 | } |
| 2258 | |
| 2259 | GluaModuleByteStream *malloc_managed_byte_stream(lua_State *L) |
| 2260 | { |
no test coverage detected