emscripten_functions_sys/lib.rs
1//! Raw bindgen-generated rust bindings to emscripten's system functions.
2//! They are grouped by their header file.
3
4#![cfg(target_os = "emscripten")]
5#![allow(non_upper_case_globals)]
6#![allow(non_camel_case_types)]
7#![allow(non_snake_case)]
8
9pub mod console;
10pub mod emscripten;
11pub mod html5;
12pub mod websocket;