| 434 | |
| 435 | |
| 436 | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { |
| 437 | while (l--) |
| 438 | luaL_addchar(B, *s++); |
| 439 | } |
| 440 | |
| 441 | |
| 442 | LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) { |
no outgoing calls
no test coverage detected