Crates.io | linux-personality |
lib.rs | linux-personality |
version | 2.0.0 |
source | src |
created_at | 2017-01-14 23:25:34.835968 |
updated_at | 2024-10-04 11:15:06.470138 |
description | Wrapper around Linux personality function. |
homepage | |
repository | https://github.com/jeandudey/linux-personality |
max_upload_size | |
id | 8067 |
size | 10,632 |
This crate intends to be a safe wrapper for the personality
linux function.
First add this to your Cargo.toml
:
[dependencies]
linux-personality = "1.0"
And this to your crate root:
extern crate linux_personality;
extern crate linux_personality;
use linux_personality::get_personality();
fn main() {
let persona = get_personality().unwrap();
println!("Current personality: {:?}", persona);
}
Jean Pierre Dudey - Initial work - jeandudey@hotmail.com
This project is licensed under the MIT License. For more information see the LICENSE file on this repository.