1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![allow(improper_ctypes)]

mod instantiate;
pub mod old;

pub use instantiate::{create_wasi_instance, instantiate_wasi, instantiate_wasi_with_context};

pub fn is_wasi_module(name: &str) -> bool {
    // FIXME: this should be more conservative, but while WASI is in flux and
    // we're figuring out how to support multiple revisions, this should do the
    // trick.
    name.starts_with("wasi")
}