| 180 | |
| 181 | |
| 182 | static int writer (lua_State *L, const void *b, size_t size, void *B) { |
| 183 | (void)L; |
| 184 | luaL_addlstring((luaL_Buffer *) B, (const char *)b, size); |
| 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | |
| 189 | static int str_dump (lua_State *L) { |
nothing calls this directly
no test coverage detected