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