| 1904 | } |
| 1905 | |
| 1906 | static int Lpb_decode(lua_State *L) { |
| 1907 | return lpbD_decode(L, lua_isnoneornil(L, 2) ? |
| 1908 | pb_lslice(NULL, 0) : |
| 1909 | lpb_checkslice(L, 2), 3); |
| 1910 | } |
| 1911 | |
| 1912 | |
| 1913 | void lpb_pushunpackdef(lua_State* L, lpb_State* LS, const pb_Type* t, pb_Field** l, int top) { |
nothing calls this directly
no test coverage detected