bitwarden_c/
lib.rs

1
2
3
4
5
6
7
8
9
// These are the C bindings, we're going to have to use unsafe raw pointers
#![allow(clippy::not_unsafe_ptr_arg_deref)]

#[cfg(not(target_arch = "wasm32"))]
pub use c::*;

#[cfg(not(target_arch = "wasm32"))]
mod c;
mod macros;