blob: 16bd6c334dc4aa334f4ea2c55739d6bbd8897da6 [file] [log] [blame]
David Brown63902772017-07-12 09:47:49 -06001extern crate libc;
2#[macro_use] extern crate log;
3extern crate simflash;
4
David Brownf52272c2017-07-12 09:56:16 -06005mod area;
David Brown63902772017-07-12 09:47:49 -06006pub mod c;
David Brownf52272c2017-07-12 09:56:16 -06007
8// The API needs to be public, even though it isn't intended to be called by Rust code, but the
9// functions are exported to C code.
David Brown63902772017-07-12 09:47:49 -060010pub mod api;
David Brownf52272c2017-07-12 09:56:16 -060011
12pub use area::{AreaDesc, FlashId};