| 473 | } |
| 474 | |
| 475 | void mp_encode_lua_null(lua_State *L, mp_buf *buf) { |
| 476 | unsigned char b[1]; |
| 477 | |
| 478 | b[0] = 0xc0; |
| 479 | mp_buf_append(L,buf,b,1); |
| 480 | } |
| 481 | |
| 482 | void mp_encode_lua_type(lua_State *L, mp_buf *buf, int level) { |
| 483 | int t = lua_type(L,-1); |
no test coverage detected