| 2493 | } |
| 2494 | |
| 2495 | WASMEDGE_CAPI_EXPORT WasmEdge_TableInstanceContext * |
| 2496 | WasmEdge_ModuleInstanceFindTable(const WasmEdge_ModuleInstanceContext *Cxt, |
| 2497 | const WasmEdge_String Name) noexcept { |
| 2498 | if (Cxt) { |
| 2499 | return toTabCxt(fromModCxt(Cxt)->findTableExports(genStrView(Name))); |
| 2500 | } |
| 2501 | return nullptr; |
| 2502 | } |
| 2503 | |
| 2504 | WASMEDGE_CAPI_EXPORT WasmEdge_MemoryInstanceContext * |
| 2505 | WasmEdge_ModuleInstanceFindMemory(const WasmEdge_ModuleInstanceContext *Cxt, |