tcl_sys/lib.rs
1//! Rust bindings for the Tcl interpreter
2//!
3//! Function specific documentation can be found at the [Tcl website]
4//!
5//! [Tcl website]: https://www.tcl-lang.org/man/tcl8.6/TclLib/contents.htm
6#![allow(non_upper_case_globals)]
7#![allow(non_camel_case_types)]
8#![allow(non_snake_case)]
9
10include!(concat!(env!("OUT_DIR"), "/bindings.rs"));