| 459 | |
| 460 | |
| 461 | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { |
| 462 | while (l--) |
| 463 | luaL_addchar(B, *s++); |
| 464 | } |
| 465 | |
| 466 | |
| 467 | LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) { |
no outgoing calls
no test coverage detected