| 631 | } |
| 632 | |
| 633 | static int Lconv_decode_float(lua_State *L) { |
| 634 | return lua_pushnumber(L, |
| 635 | pb_decode_float((uint32_t)lpb_checkinteger(L, 1))), 1; |
| 636 | } |
| 637 | |
| 638 | static int Lconv_encode_double(lua_State *L) { |
| 639 | return lpb_pushinteger(L, pb_encode_double(luaL_checknumber(L, 1)), |
nothing calls this directly
no test coverage detected