** returns a pointer to a free area with at least 'sz' bytes */
| 572 | ** returns a pointer to a free area with at least 'sz' bytes |
| 573 | */ |
| 574 | LUALIB_API char *luaL_prepbuffsize (luaL_Buffer *B, size_t sz) { |
| 575 | return prepbuffsize(B, sz, -1); |
| 576 | } |
| 577 | |
| 578 | |
| 579 | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { |
no test coverage detected