lief 1.0.0

Official Rust bindings for LIEF
1
2
3
4
5
6
7
8
9
10
11
use lief_ffi as ffi;

/// This structure exposes OSX-specific API for the current process.
pub struct Process {}

impl Process {
    /// Return the version of dyld for the current process
    pub fn dyld_version() -> String {
        ffi::runtime_osx_Process::dyld_version().to_string()
    }
}