** returns a pointer to a free area with at least 'sz' bytes */
| 561 | ** returns a pointer to a free area with at least 'sz' bytes |
| 562 | */ |
| 563 | LUALIB_API char *luaL_prepbuffsize (luaL_Buffer *B, size_t sz) { |
| 564 | return prepbuffsize(B, sz, -1); |
| 565 | } |
| 566 | |
| 567 | |
| 568 | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { |
no test coverage detected