| 138 | |
| 139 | |
| 140 | static int writer (lua_State *L, const void* b, size_t size, void* B) { |
| 141 | (void)L; |
| 142 | luaL_addlstring((luaL_Buffer*) B, (const char *)b, size); |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | |
| 147 | static int str_dump (lua_State *L) { |
nothing calls this directly
no test coverage detected