emscripten_functions/
lib.rs

1//! Various emscripten system functions that make programming in rust for emscripten targets easier.
2//! They are grouped by the original function's header file.
3
4#![cfg(target_os = "emscripten")]
5
6pub mod console;
7pub mod emscripten;
8pub mod websocket;