\brief Initialize the `ref` to a null `eqref` value.
| 20 | |
| 21 | /// \brief Initialize the `ref` to a null `eqref` value. |
| 22 | static inline void wasmtime_eqref_set_null(wasmtime_eqref_t *ref) { |
| 23 | ref->store_id = 0; |
| 24 | } |
| 25 | |
| 26 | /// \brief Returns whether the provided `ref` is a null `eqref` value. |
| 27 | static inline bool wasmtime_eqref_is_null(const wasmtime_eqref_t *ref) { |