Move part of libbase to Rust

This commit is contained in:
topjohnwu
2022-08-08 22:53:37 -07:00
parent dd565a11ea
commit 4c0f72f68f
19 changed files with 205 additions and 130 deletions

View File

@ -1,10 +1,13 @@
#![feature(format_args_nl)]
pub use libc;
pub use logging::*;
pub use misc::*;
pub use xwrap::*;
mod logging;
mod misc;
mod xwrap;
#[cxx::bridge]
pub mod ffi {