1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![warn(unsafe_op_in_unsafe_fn)]
#![allow(non_camel_case_types)]
#![allow(unused_unsafe)]
#![doc = include_str!("crate-doc.md")]
mod error;
mod fzstring;
mod macros;
mod utilfns;
pub use error::*;
pub use fzstring::{fz_string_t, FzString};
pub use macros::*;
pub use utilfns::*;