** returns a pointer to a free area with at least 'sz' bytes */
| 590 | ** returns a pointer to a free area with at least 'sz' bytes |
| 591 | */ |
| 592 | LUALIB_API char *luaL_prepbuffsize (luaL_Buffer *B, size_t sz) { |
| 593 | return prepbuffsize(B, sz, -1); |
| 594 | } |
| 595 | |
| 596 | |
| 597 | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { |
no test coverage detected