specter/lib.rs
1// All `unsafe fn` in this crate are either `extern "C"` FFI entry-points whose
2// safety contracts are documented in `specter.h`, or internal helpers whose
3// callers are the FFI layer above them. A Rust `# Safety` section would
4// duplicate the C-header docs without adding value.
5#![allow(clippy::missing_safety_doc)]
6
7pub mod config;
8pub mod ffi;
9pub mod memory;
10pub mod utils;