ffizz_string/
lib.rs

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