| 10646 | |
| 10647 | |
| 10648 | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { |
| 10649 | while (l--) |
| 10650 | luaL_addchar(B, *s++); |
| 10651 | } |
| 10652 | |
| 10653 | |
| 10654 | LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) { |
no outgoing calls
no test coverage detected