1 2 3 4 5 6 7 8 9
//! FFI module for native app integration //! //! Provides C-compatible functions for iOS and macOS Swift integration. #[cfg(any(target_os = "ios", target_os = "macos"))] mod apple; #[cfg(any(target_os = "ios", target_os = "macos"))] pub use apple::*;