| 606 | } |
| 607 | |
| 608 | static int Lconv_encode_sint32(lua_State *L) { |
| 609 | return lpb_pushinteger(L, pb_encode_sint32((int32_t)lpb_checkinteger(L, 1)), |
| 610 | 1, lpb_lstate(L)->int64_mode), 1; |
| 611 | } |
| 612 | |
| 613 | static int Lconv_decode_sint32(lua_State *L) { |
| 614 | return lpb_pushinteger(L, pb_decode_sint32((uint32_t)lpb_checkinteger(L, 1)), |
nothing calls this directly
no test coverage detected