| 482 | |
| 483 | |
| 484 | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { |
| 485 | while (l--) |
| 486 | luaL_addchar(B, *s++); |
| 487 | } |
| 488 | |
| 489 | |
| 490 | LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) { |
no outgoing calls
no test coverage detected