| 626 | } |
| 627 | |
| 628 | static int Lconv_encode_float(lua_State *L) { |
| 629 | return lpb_pushinteger(L, pb_encode_float((float)luaL_checknumber(L, 1)), |
| 630 | 1, lpb_lstate(L)->int64_mode), 1; |
| 631 | } |
| 632 | |
| 633 | static int Lconv_decode_float(lua_State *L) { |
| 634 | return lua_pushnumber(L, |
nothing calls this directly
no test coverage detected